0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-14 00:34:18 +01:00

ircd::json: Relax number_frac limit more digits.

This commit is contained in:
Jason Volk 2020-06-17 23:16:42 -07:00
parent 4371d803a4
commit 59829f1a59

View file

@ -86,7 +86,7 @@ ircd::json::parser
const rule<> number_frac
{
lit('.') >> repeat(1, 16)[char_("0-9")] >> -char_("1-9")
lit('.') >> repeat(1, 18)[char_("0-9")] >> -char_("1-9")
,"fraction"
};