0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 01:59:33 +02:00

ircd::json: Reverse number's <alternative>.

This commit is contained in:
Jason Volk 2018-08-25 15:06:17 -07:00
parent bbdf21e11a
commit 2424208a01

View file

@ -77,7 +77,7 @@ struct ircd::json::input
// numerical (TODO: exponent)
rule<> number
{
long_ | double_
double_ | long_
,"number"
};