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

@ -26,12 +26,12 @@ namespace ArduinoJson
{
public:
JsonObject()
: JsonObjectBase(items, N)
: JsonObjectBase(_items, N)
{
}
private:
KeyValuePair items[N];
KeyValuePair _items[N];
};