We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
If given a incomplete codepoint, rapidjson will hit an assertion:
rapidjson::Document d; d.Parse("{\"foo\": \"\\uaaa\"}");
It can be fixed by adding "RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID;" to reader.h:707
The text was updated successfully, but these errors were encountered:
b7e3410
Merge pull request #290 from miloyip/issue288_QuoteInUnicodeEscape
928d342
Fix #288 double quote in unicode escape
No branches or pull requests
Hi,
If given a incomplete codepoint, rapidjson will hit an assertion:
It can be fixed by adding "RAPIDJSON_PARSE_ERROR_EARLY_RETURN_VOID;" to reader.h:707
The text was updated successfully, but these errors were encountered: