Merge pull request #882 from erengy/fix-msvc-c4819
Fix MSVC warning C4819
This commit is contained in:
commit
e54b6ace94
1 changed files with 1 additions and 1 deletions
|
@ -6564,7 +6564,7 @@ class serializer
|
||||||
// check that the additional bytes are present
|
// check that the additional bytes are present
|
||||||
assert(i + bytes < s.size());
|
assert(i + bytes < s.size());
|
||||||
|
|
||||||
// to use \uxxxx escaping, we first need to caluclate
|
// to use \uxxxx escaping, we first need to calculate
|
||||||
// the codepoint from the UTF-8 bytes
|
// the codepoint from the UTF-8 bytes
|
||||||
int codepoint = 0;
|
int codepoint = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue