mirror of
https://github.com/python/cpython.git
synced 2024-11-29 12:54:02 +08:00
Silence 'unused variable' gcc warning. Patch by Éric Araujo.
This commit is contained in:
parent
c236850ad1
commit
7db923cc99
@ -2737,10 +2737,11 @@ PyUnicode_DecodeUTF32Stateful(const char *s,
|
||||
Py_UNICODE *p;
|
||||
#ifndef Py_UNICODE_WIDE
|
||||
int pairs = 0;
|
||||
const unsigned char *qq;
|
||||
#else
|
||||
const int pairs = 0;
|
||||
#endif
|
||||
const unsigned char *q, *e, *qq;
|
||||
const unsigned char *q, *e;
|
||||
int bo = 0; /* assume native ordering by default */
|
||||
const char *errmsg = "";
|
||||
/* Offsets from q for retrieving bytes in the right order. */
|
||||
|
Loading…
Reference in New Issue
Block a user