|
void * | Malloc (size_t _size) |
|
void * | Realloc (void *_org_p, size_t _org_size, size_t _new_size) |
|
|
static void | Free (void *_p) |
|
Definition at line 1605 of file pointertest.cpp.
◆ Free()
static void myjson::MyAllocator::Free |
( |
void * | _p | ) |
|
|
inlinestatic |
◆ Malloc()
void * myjson::MyAllocator::Malloc |
( |
size_t | _size | ) |
|
|
inline |
◆ Realloc()
void * myjson::MyAllocator::Realloc |
( |
void * | _org_p, |
|
|
size_t | _org_size, |
|
|
size_t | _new_size ) |
|
inline |
Definition at line 1610 of file pointertest.cpp.
1610{ (void)_org_size; return realloc(_org_p, _new_size); }
◆ kNeedFree
const bool myjson::MyAllocator::kNeedFree = true |
|
static |
The documentation for this class was generated from the following file: