Renamed JsonObjectBase into JsonPrintable

This commit is contained in:
Benoît Blanchon
2014-07-17 13:16:14 +02:00
parent 5e1697f47b
commit 45c9ba1191
7 changed files with 15 additions and 15 deletions

View File

@ -97,9 +97,9 @@ namespace JsonGeneratorTests
private:
void addNested(const char* key, JsonObjectBase& value)
void addNested(const char* key, Printable& value)
{
hash.add<JsonObjectBase&>(key, value);
hash.add<Printable&>(key, value);
}
template<typename T>