Add ShrinkToFit() to StringBuffer and MemoryBuffer

This commit is contained in:
Milo Yip
2014-08-17 18:32:08 +08:00
parent 2e23787753
commit 3714019819
3 changed files with 8 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ TEST(Writer, Compact) {
StringStream s("{ \"hello\" : \"world\", \"t\" : true , \"f\" : false, \"n\": null, \"i\":123, \"pi\": 3.1416, \"a\":[1, 2, 3] } ");
StringBuffer buffer;
Writer<StringBuffer> writer(buffer);
buffer.ShrinkToFit();
Reader reader;
reader.Parse<0>(s, writer);
EXPECT_STREQ("{\"hello\":\"world\",\"t\":true,\"f\":false,\"n\":null,\"i\":123,\"pi\":3.1416,\"a\":[1,2,3]}", buffer.GetString());