| 54 | } |
| 55 | |
| 56 | void CodeMemoryReportFormatter::clearReporting() |
| 57 | { |
| 58 | while (codeReportingList_) { |
| 59 | CodeReportingAllocationNode* oldNode = codeReportingList_; |
| 60 | codeReportingList_ = codeReportingList_->next_; |
| 61 | internalAllocator_->free_memory((char*) oldNode, 0, __FILE__, __LINE__); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | void CodeMemoryReportFormatter::addNodeToList(const char* variableName, void* memory, CodeReportingAllocationNode* next) |
| 66 | { |
nothing calls this directly
no test coverage detected