mirror of
https://github.com/matrix-construct/construct
synced 2025-01-15 17:16:49 +01:00
ircd::json: Relax number_frac limit more digits.
This commit is contained in:
parent
4371d803a4
commit
59829f1a59
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ ircd::json::parser
|
||||||
|
|
||||||
const rule<> number_frac
|
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"
|
,"fraction"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue