mirror of
https://github.com/python/cpython.git
synced 2025-11-18 18:31:56 +00:00
Remove warning (static not being first) when building with -W
This commit is contained in:
parent
0a8266a7e3
commit
75a3204095
1 changed files with 2 additions and 2 deletions
|
|
@ -16,9 +16,9 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define ENCMAP(encoding) \
|
#define ENCMAP(encoding) \
|
||||||
const static encode_map *encoding##encmap;
|
static const encode_map *encoding##encmap;
|
||||||
#define DECMAP(encoding) \
|
#define DECMAP(encoding) \
|
||||||
const static decode_map *encoding##decmap;
|
static const decode_map *encoding##decmap;
|
||||||
|
|
||||||
#define ENCODER_INIT(encoding) \
|
#define ENCODER_INIT(encoding) \
|
||||||
static int encoding##_encode_init( \
|
static int encoding##_encode_init( \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue