diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-06-13 20:31:17 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-06-13 20:31:17 +0000 |
commit | 75a32040959ac69999b0631ed2d2d5d02496d860 (patch) | |
tree | c324c36ee53f288ef67fab977f5852a282dce45f | |
parent | 0a8266a7e3fe865ed41c1ff6c1e3e8a8b1307066 (diff) | |
download | cpython-git-75a32040959ac69999b0631ed2d2d5d02496d860.tar.gz |
Remove warning (static not being first) when building with -W
-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 f66d892c9b..b66ff754ea 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( \ |