Changed naming convention to avoid shadowing (issue #25)

This commit is contained in:
Benoit Blanchon
2014-09-28 13:36:41 +02:00
parent cc19266470
commit ce788d96c4
19 changed files with 147 additions and 148 deletions

View File

@ -24,12 +24,12 @@ namespace ArduinoJson
{
public:
JsonParser()
: JsonParserBase(tokens, MAX_TOKENS)
: JsonParserBase(_tokens, MAX_TOKENS)
{
}
private:
jsmntok_t tokens[MAX_TOKENS];
jsmntok_t _tokens[MAX_TOKENS];
};
}
}