mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-19 05:22:24 +02:00
Replaced public inheritance by protected and private
This commit is contained in:
@ -17,7 +17,8 @@ namespace JsonParserTests
|
||||
long expected [] = { 1, 2, 3 };
|
||||
JsonParser<4> parser;
|
||||
|
||||
JsonArray a = parser.parse(json);
|
||||
JsonValue v = parser.parse(json);
|
||||
JsonArray a = (ArduinoJson::Parser::JsonArray)v;
|
||||
|
||||
int index = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user