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

Method Realloc

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

Source from the content-addressed store, hash-verified

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};
1502

Callers 2

TestAllocatorFunction · 0.45
TESTFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected