MCPcopy Create free account
hub / github.com/Tencent/rapidjson / Malloc

Method Malloc

test/unittest/pointertest.cpp:1498–1498  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1496public:
1497 static const bool kNeedFree = true;
1498 void * Malloc(size_t _size) { return malloc(_size); }
1499 void * Realloc(void *_org_p, size_t _org_size, size_t _new_size) { (void)_org_size; return realloc(_org_p, _new_size); }
1500 static void Free(void *_p) { return free(_p); }
1501};

Callers 4

ReadFileFunction · 0.45
TestAllocatorFunction · 0.45
TESTFunction · 0.45
ReadFileFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected