Fixed compilation warning

This commit is contained in:
Benoit Blanchon
2014-10-17 21:51:58 +02:00
parent 7df73824aa
commit 32ffb75394
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ class JsonValue;
class JsonNodeWrapper
{
friend JsonValue;
friend class JsonValue;
public:
JsonNodeWrapper()

View File

@ -13,7 +13,7 @@ class JsonValue;
class JsonContainer : public Printable, public JsonNodeWrapper
{
// friend JsonValue;
friend JsonArray;
friend class JsonArray;
public:

View File

@ -6,7 +6,7 @@
template<int CAPACITY>
class StaticJsonBuffer : public JsonBuffer
{
friend JsonObject;
friend class JsonObject;
public: