Test that string can be stored in JsonObject

This commit is contained in:
Benoit Blanchon
2014-09-27 15:24:16 +02:00
parent 0495297c6c
commit a9a51ec1e2
4 changed files with 27 additions and 1 deletions

View File

@ -14,10 +14,12 @@ public:
}
void operator=(bool);
void operator=(const char*);
void operator=(double);
void operator=(int);
operator bool();
operator const char*();
operator double();
operator int();