diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-06-13 20:31:17 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-06-13 20:31:17 (GMT) |
commit | 75a32040959ac69999b0631ed2d2d5d02496d860 (patch) | |
tree | c324c36ee53f288ef67fab977f5852a282dce45f /Modules/cjkcodecs | |
parent | 0a8266a7e3fe865ed41c1ff6c1e3e8a8b1307066 (diff) | |
download | cpython-75a32040959ac69999b0631ed2d2d5d02496d860.zip cpython-75a32040959ac69999b0631ed2d2d5d02496d860.tar.gz cpython-75a32040959ac69999b0631ed2d2d5d02496d860.tar.bz2 |
Remove warning (static not being first) when building with -W
Diffstat (limited to 'Modules/cjkcodecs')
-rw-r--r-- | Modules/cjkcodecs/codeccommon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/cjkcodecs/codeccommon.h b/Modules/cjkcodecs/codeccommon.h index f66d892..b66ff75 100644 --- a/Modules/cjkcodecs/codeccommon.h +++ b/Modules/cjkcodecs/codeccommon.h @@ -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( \ |