Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 75a3204

Browse files
committed
Remove warning (static not being first) when building with -W
1 parent 0a8266a commit 75a3204

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/cjkcodecs/codeccommon.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
#endif
1717

1818
#define ENCMAP(encoding) \
19-
const static encode_map *encoding##encmap;
19+
static const encode_map *encoding##encmap;
2020
#define DECMAP(encoding) \
21-
const static decode_map *encoding##decmap;
21+
static const decode_map *encoding##decmap;
2222

2323
#define ENCODER_INIT(encoding) \
2424
static int encoding##_encode_init( \

0 commit comments

Comments
 (0)