mirror of
https://github.com/matrix-construct/construct
synced 2025-01-01 02:14:13 +01:00
ircd::json: Relax fractional precision lexing.
This commit is contained in:
parent
5a187da4b1
commit
59f9aca938
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ ircd::json::parser
|
|||
|
||||
const rule<> number_frac
|
||||
{
|
||||
lit('.') >> repeat(1, 18)[char_("0-9")] >> -char_("1-9")
|
||||
lit('.') >> repeat(1, 19)[char_("0-9")] >> -char_("1-9")
|
||||
,"fraction"
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue