Avoid using the memory leak detector INSIDE SimpleString as its used inside the detector */
| 118 | |
| 119 | /* Avoid using the memory leak detector INSIDE SimpleString as its used inside the detector */ |
| 120 | char* SimpleString::allocStringBuffer(size_t _size, const char* file, size_t line) |
| 121 | { |
| 122 | return getStringAllocator()->alloc_memory(_size, file, line); |
| 123 | } |
| 124 | |
| 125 | void SimpleString::deallocStringBuffer(char* str, size_t size, const char* file, size_t line) |
| 126 | { |
nothing calls this directly
no test coverage detected