We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5b906f commit 9973a7dCopy full SHA for 9973a7d
Modules/cjkcodecs/cjkcodecs.h
@@ -219,6 +219,7 @@ static int \
219
add_mappings(cjkcodecs_module_state *st) \
220
{ \
221
int idx = 0; \
222
+ (void)idx; \
223
st->num_mappings = NUM; \
224
st->mapping_list = PyMem_Calloc(NUM, sizeof(struct dbcs_map)); \
225
if (st->mapping_list == NULL) { \
@@ -242,6 +243,7 @@ static int \
242
243
add_codecs(cjkcodecs_module_state *st) \
244
245
246
247
st->num_codecs = NUM; \
248
st->codec_list = PyMem_Calloc(NUM, sizeof(MultibyteCodec)); \
249
if (st->codec_list == NULL) { \
0 commit comments