mirror of https://github.com/python/cpython
Remove warning (static not being first) when building with -W
This commit is contained in:
parent
0a8266a7e3
commit
75a3204095
|
@ -16,9 +16,9 @@
|
|||
#endif
|
||||
|
||||
#define ENCMAP(encoding) \
|
||||
const static encode_map *encoding##encmap;
|
||||
static const encode_map *encoding##encmap;
|
||||
#define DECMAP(encoding) \
|
||||
const static decode_map *encoding##decmap;
|
||||
static const decode_map *encoding##decmap;
|
||||
|
||||
#define ENCODER_INIT(encoding) \
|
||||
static int encoding##_encode_init( \
|
||||
|
|
Loading…
Reference in New Issue