bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157)

This commit is contained in:
Stefan Krah 2017-08-21 13:09:59 +02:00 committed by GitHub
parent 0267128aa4
commit f432a3234f
13 changed files with 35 additions and 21 deletions

View file

@ -1112,6 +1112,7 @@ r_object(RFILE *p)
case TYPE_ASCII_INTERNED:
is_interned = 1;
/* fall through */
case TYPE_ASCII:
n = r_long(p);
if (PyErr_Occurred())
@ -1124,6 +1125,7 @@ r_object(RFILE *p)
case TYPE_SHORT_ASCII_INTERNED:
is_interned = 1;
/* fall through */
case TYPE_SHORT_ASCII:
n = r_byte(p);
if (n == EOF) {
@ -1149,6 +1151,7 @@ r_object(RFILE *p)
case TYPE_INTERNED:
is_interned = 1;
/* fall through */
case TYPE_UNICODE:
{
const char *buffer;