| 94 | } |
| 95 | |
| 96 | void SimpleStringInternalCache::destroyInternalCacheNode(SimpleStringInternalCacheNode * node) |
| 97 | { |
| 98 | allocator_->free_memory((char*) node, sizeof(SimpleStringInternalCacheNode) * amountOfInternalCacheNodes, __FILE__, __LINE__); |
| 99 | } |
| 100 | |
| 101 | SimpleStringMemoryBlock* SimpleStringInternalCache::createSimpleStringMemoryBlock(size_t size, SimpleStringMemoryBlock* next) |
| 102 | { |
nothing calls this directly
no test coverage detected