forked from bblanchon/ArduinoJson
Changed naming convention to avoid shadowing (issue #25)
This commit is contained in:
@ -26,12 +26,12 @@ namespace ArduinoJson
|
||||
{
|
||||
public:
|
||||
JsonObject()
|
||||
: JsonObjectBase(items, N)
|
||||
: JsonObjectBase(_items, N)
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
KeyValuePair items[N];
|
||||
KeyValuePair _items[N];
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user