Merge pull request #37 from appetizermaker/master

Fix small mistake on sqlexer.cpp
This commit is contained in:
Alberto Demichelis 2016-04-19 23:57:11 +08:00
commit 4125aa515d

View File

@ -389,7 +389,7 @@ SQInteger SQLexer::ReadString(SQInteger ndelim,bool verbatim)
#if WCHAR_SIZE == 2
AddUTF16(scstrtoul(temp, &stemp, 16));
#else
ADD_CHAR((SQChar)scstrtoul(temp, &stemp, 16));
APPEND_CHAR((SQChar)scstrtoul(temp, &stemp, 16));
#endif
#else
AddUTF8(scstrtoul(temp, &stemp, 16));