Renamed JsonValue to JsonVariant

This commit is contained in:
Benoit Blanchon
2014-11-04 09:51:25 +01:00
parent 699292b058
commit 09f6d059a7
31 changed files with 175 additions and 175 deletions

View File

@@ -6,7 +6,7 @@
#pragma once
#include "JsonValue.hpp"
#include "JsonVariant.hpp"
namespace ArduinoJson {
@@ -14,6 +14,6 @@ struct JsonPair {
JsonPair(const char* k) : key(k) {}
const char* key;
JsonValue value;
JsonVariant value;
};
}