We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9fb307 commit b07db39Copy full SHA for b07db39
include/tao/json/internal/grammar.hpp
@@ -31,9 +31,9 @@ namespace tao
31
struct value_separator : padr< one< ',' > > {};
32
struct element_separator : padr< one< ',' > > {};
33
34
- struct false_ : string< 'f', 'a', 'l', 's', 'e' > {};
35
- struct null : string< 'n', 'u', 'l', 'l' > {};
36
- struct true_ : string< 't', 'r', 'u', 'e' > {};
+ struct false_ : json_pegtl::string< 'f', 'a', 'l', 's', 'e' > {};
+ struct null : json_pegtl::string< 'n', 'u', 'l', 'l' > {};
+ struct true_ : json_pegtl::string< 't', 'r', 'u', 'e' > {};
37
38
struct digits : plus< abnf::DIGIT > {};
39
include/tao/json/internal/jaxn/grammar.hpp
@@ -43,14 +43,14 @@ namespace tao
43
44
struct value_concat : pad< one< '+' >, ws > {};
45
46
47
48
49
50
- struct nan : string< 'N', 'a', 'N'> {};
+ struct nan : json_pegtl::string< 'N', 'a', 'N' > {};
51
52
template< bool NEG >
53
- struct infinity : string< 'I', 'n', 'f', 'i', 'n', 'i', 't', 'y' > {};
+ struct infinity : json_pegtl::string< 'I', 'n', 'f', 'i', 'n', 'i', 't', 'y' > {};
54
55
56
struct hexnum : plus< abnf::HEXDIG > {};
0 commit comments