aboutsummaryrefslogtreecommitdiffstats
path: root/document
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-06-06 09:11:08 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-06-06 09:12:38 +0200
commit1bfdfd1f10c32b8f6e70d49f6d08e89d416c9a61 (patch)
tree53d2cbf6e9cafde6a78177d7dd70a24d3fa32184 /document
parent31c553b610dbb43634f8b0f2efbc438ed04faaed (diff)
Reduced memory footprint of SerializableArray from 120 to 64 bytes
Diffstat (limited to 'document')
-rw-r--r--document/src/tests/documenttestcase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/document/src/tests/documenttestcase.cpp b/document/src/tests/documenttestcase.cpp
index c844f2cf5a2..3bbd5178055 100644
--- a/document/src/tests/documenttestcase.cpp
+++ b/document/src/tests/documenttestcase.cpp
@@ -76,7 +76,7 @@ void DocumentTest::testSizeOf()
CPPUNIT_ASSERT_EQUAL(120ul, sizeof(Document));
CPPUNIT_ASSERT_EQUAL(64ul, sizeof(StructFieldValue));
CPPUNIT_ASSERT_EQUAL(16ul, sizeof(StructuredFieldValue));
- CPPUNIT_ASSERT_EQUAL(120ul, sizeof(SerializableArray));
+ CPPUNIT_ASSERT_EQUAL(64ul, sizeof(SerializableArray));
}
void DocumentTest::testFieldPath()