mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 08:48:30 +01:00
Replaced public inheritance by protected and private
This commit is contained in:
@@ -24,10 +24,15 @@ namespace ArduinoJson
|
||||
class JsonArray;
|
||||
class JsonObject;
|
||||
|
||||
class JsonValue : public JsonToken
|
||||
class JsonValue : protected JsonToken
|
||||
{
|
||||
public:
|
||||
|
||||
JsonValue()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
JsonValue(JsonToken token)
|
||||
: JsonToken(token)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user