forked from bblanchon/ArduinoJson
Fixed bug in parser when "null", "true" or "false" is mispelled
This commit is contained in:
@ -22,6 +22,7 @@ class JsonParser {
|
||||
bool isEnd() { return *_ptr == '\0'; }
|
||||
|
||||
bool skip(char charToSkip);
|
||||
bool skip(const char *wordToSkip);
|
||||
void skipSpaces();
|
||||
|
||||
void parseAnythingTo(JsonValue &destination);
|
||||
|
Reference in New Issue
Block a user