mirror of
https://github.com/matrix-construct/construct
synced 2025-01-19 11:01:54 +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
|
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"
|
,"fraction"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue