mirror of
https://github.com/python/cpython.git
synced 2025-08-29 05:05:03 +00:00
Merged revisions 81936 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k ........ r81936 | mark.dickinson | 2010-06-12 11:10:14 +0200 (Sa, 12 Jun 2010) | 2 lines Silence 'unused variable' gcc warning. Patch by Éric Araujo. ........
This commit is contained in:
parent
378e6db834
commit
ded5acf34a
1 changed files with 2 additions and 1 deletions
|
@ -2616,10 +2616,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…
Add table
Add a link
Reference in a new issue