8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8525bd commit adab9a3Copy full SHA for adab9a3
test/JsonObject/copy.cpp
@@ -23,7 +23,7 @@ void validateObject(TObject& object) {
23
REQUIRE(object["hello"].template is<JsonArray>());
24
REQUIRE(object["hello"][0] == std::string("world"));
25
26
- const int expectedSize = JSON_OBJECT_SIZE(2) + JSON_ARRAY_SIZE(1);
+ const size_t expectedSize = JSON_OBJECT_SIZE(2) + JSON_ARRAY_SIZE(1);
27
REQUIRE(expectedSize == object.memoryUsage());
28
}
29
0 commit comments