All tests passed!

This commit is contained in:
Benoit Blanchon
2014-10-30 21:51:59 +01:00
parent 45a8ed6531
commit 889f059758
17 changed files with 91 additions and 69 deletions

View File

@@ -14,10 +14,7 @@ namespace ArduinoJson {
struct JsonPair {
JsonPair(const char* k) : key(k) {}
const char* const key;
const char* key;
JsonValue value;
// warning C4512: assignment operator could not be generated
#pragma warning( suppress : 4512 )
};
}