mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157)
This commit is contained in:
parent
0267128aa4
commit
f432a3234f
13 changed files with 35 additions and 21 deletions
|
@ -3616,7 +3616,7 @@ _build_callargs(PyCFuncPtrObject *self, PyObject *argtypes,
|
|||
case (PARAMFLAG_FIN | PARAMFLAG_FOUT):
|
||||
*pinoutmask |= (1 << i); /* mark as inout arg */
|
||||
(*pnumretvals)++;
|
||||
/* fall through to PARAMFLAG_FIN... */
|
||||
/* fall through */
|
||||
case 0:
|
||||
case PARAMFLAG_FIN:
|
||||
/* 'in' parameter. Copy it from inargs. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue