From: Neal Norwitz Date: Sun, 13 Jun 2004 20:31:17 +0000 (+0000) Subject: Remove warning (static not being first) when building with -W X-Git-Tag: v2.4a1~190 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=75a32040959ac69999b0631ed2d2d5d02496d860;p=thirdparty%2FPython%2Fcpython.git Remove warning (static not being first) when building with -W --- diff --git a/Modules/cjkcodecs/codeccommon.h b/Modules/cjkcodecs/codeccommon.h index f66d892c9b7c..b66ff754ea46 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( \