| 123 | } |
| 124 | |
| 125 | void SimpleString::deallocStringBuffer(char* str, size_t size, const char* file, size_t line) |
| 126 | { |
| 127 | getStringAllocator()->free_memory(str, size, file, line); |
| 128 | } |
| 129 | |
| 130 | char* SimpleString::getEmptyString() const |
| 131 | { |
nothing calls this directly
no test coverage detected