Standardize behavior of CrtAllocator::Malloc()

This commit is contained in:
Milo Yip
2015-04-17 13:01:14 +08:00
parent 4cd14b7c0e
commit 0e8bbe5e3e
2 changed files with 8 additions and 1 deletions

View File

@@ -26,6 +26,8 @@ using namespace rapidjson;
template <typename Allocator>
void TestAllocator(Allocator& a) {
EXPECT_TRUE(a.Malloc(0) == 0);
uint8_t* p = (uint8_t*)a.Malloc(100);
EXPECT_TRUE(p != 0);
for (size_t i = 0; i < 100; i++)