mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Fix fatal compiler (MSVC6) error:
unicodeobject.c(735) : error C2143: syntax error : missing ';' before '}'
This commit is contained in:
parent
a924bb1ad2
commit
855ffac224
1 changed files with 1 additions and 0 deletions
|
@ -732,6 +732,7 @@ PyObject *PyUnicode_DecodeUTF8(const char *s,
|
||||||
}
|
}
|
||||||
s += n;
|
s += n;
|
||||||
nextChar:
|
nextChar:
|
||||||
|
/* empty */;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Adjust length */
|
/* Adjust length */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue