Fixed GCC warnings

This commit is contained in:
Benoit Blanchon
2014-07-14 16:13:58 +02:00
parent 9ee3dc638d
commit 2e5b959e8b
2 changed files with 2 additions and 3 deletions

View File

@ -43,7 +43,7 @@ namespace ArduinoJson
private: private:
Internals::JsonValue* items; Internals::JsonValue* items;
int count, capacity; int capacity, count;
}; };
} }
} }

View File

@ -55,8 +55,7 @@ namespace ArduinoJson
private: private:
KeyValuePair* items; KeyValuePair* items;
int count; int capacity, count;
int capacity;
}; };
} }
} }