| 37 | #define MAX_VARIABLE_NAME_LENGTH MAX_VARIABLE_NAME_FILE_PART + MAX_VARIABLE_NAME_SEPERATOR_PART + MAX_VARIABLE_NAME_LINE_PART |
| 38 | |
| 39 | struct CodeReportingAllocationNode |
| 40 | { |
| 41 | char variableName_[MAX_VARIABLE_NAME_LENGTH + 1]; |
| 42 | void* memory_; |
| 43 | CodeReportingAllocationNode* next_; |
| 44 | }; |
| 45 | |
| 46 | CodeMemoryReportFormatter::CodeMemoryReportFormatter(TestMemoryAllocator* internalAllocator) |
| 47 | : codeReportingList_(NULLPTR), internalAllocator_(internalAllocator) |
nothing calls this directly
no outgoing calls
no test coverage detected