0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-28 06:48:20 +02:00

ircd::json: Extend escaped unicode codepoint target.

This commit is contained in:
Jason Volk 2018-03-21 16:04:45 -07:00
parent 0e7ef9ef7d
commit df7b6f0ca9

View file

@ -80,7 +80,7 @@ struct ircd::json::input
// string
rule<> unicode
{
lit('u') >> qi::uint_parser<char, 16, 4, 4>{}
lit('u') >> qi::uint_parser<uint64_t, 16, 1, 12>{}
,"escaped unicode"
};