mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 03:52:16 +02:00
Fixed compilation warning
This commit is contained in:
@ -5,7 +5,7 @@ class JsonValue;
|
||||
|
||||
class JsonNodeWrapper
|
||||
{
|
||||
friend JsonValue;
|
||||
friend class JsonValue;
|
||||
|
||||
public:
|
||||
JsonNodeWrapper()
|
||||
|
@ -13,7 +13,7 @@ class JsonValue;
|
||||
class JsonContainer : public Printable, public JsonNodeWrapper
|
||||
{
|
||||
// friend JsonValue;
|
||||
friend JsonArray;
|
||||
friend class JsonArray;
|
||||
|
||||
public:
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
template<int CAPACITY>
|
||||
class StaticJsonBuffer : public JsonBuffer
|
||||
{
|
||||
friend JsonObject;
|
||||
friend class JsonObject;
|
||||
|
||||
public:
|
||||
|
||||
|
Reference in New Issue
Block a user