2
0
mirror of https://github.com/boostorg/json.git synced 2026-02-12 12:12:15 +00:00

shrink sizeof(value)

This commit is contained in:
Vinnie Falco
2019-11-13 07:03:22 -08:00
parent 05d040d2d9
commit 8941a77f11
16 changed files with 527 additions and 399 deletions

View File

@@ -22,7 +22,7 @@ public:
void
testStorage()
{
parse(
auto jv = parse(
R"xx({
"glossary": {
"title": "example glossary",
@@ -44,7 +44,8 @@ R"xx({
}
}
}
})xx", make_storage<block_storage>());
})xx"
, make_storage<block_storage>());
pass();
}