1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-09 11:01:47 +03:00

still errors...

This commit is contained in:
Niels
2015-02-10 23:55:44 +01:00
parent a201bc981d
commit e845cd1db8
3 changed files with 6 additions and 4 deletions

View File

@ -2612,7 +2612,7 @@ class basic_json
re2c:define:YYLIMIT = m_limit;
*/
lexer_start:
json_parser_lexer_start:
// set current to the begin of the buffer
m_begin = m_cursor;
@ -2624,7 +2624,7 @@ lexer_start:
/*!re2c
// whitespace
ws = [ \t\n\r]*;
ws { goto lexer_start; }
ws { goto json_parser_lexer_start; }
// structural characters
"[" { return last_token = token_type::begin_array; }