| 42 | }; |
| 43 | |
| 44 | SimpleStringInternalCache::SimpleStringInternalCache() |
| 45 | : allocator_(defaultMallocAllocator()), cache_(NULLPTR), nonCachedAllocations_(NULLPTR), hasWarnedAboutDeallocations(false) |
| 46 | { |
| 47 | cache_ = createInternalCacheNodes(); |
| 48 | } |
| 49 | |
| 50 | SimpleStringInternalCache::~SimpleStringInternalCache() |
| 51 | { |
nothing calls this directly
no test coverage detected