| 254 | //////////////////////// |
| 255 | |
| 256 | void MemoryLeakDetectorNode::init(char* memory, unsigned number, size_t size, TestMemoryAllocator* allocator, MemLeakPeriod period, unsigned char allocation_stage, const char* file, size_t line) |
| 257 | { |
| 258 | number_ = number; |
| 259 | memory_ = memory; |
| 260 | size_ = size; |
| 261 | allocator_ = allocator; |
| 262 | period_ = period; |
| 263 | allocation_stage_ = allocation_stage; |
| 264 | file_ = file; |
| 265 | line_ = line; |
| 266 | } |
| 267 | |
| 268 | /////////////////////// |
| 269 |
no outgoing calls
no test coverage detected