| 328 | { |
| 329 | public: |
| 330 | MemPoolT() : _root(0), _currentAllocs(0), _nAllocs(0), _maxAllocs(0), _nUntracked(0) {} |
| 331 | ~MemPoolT() { |
| 332 | // Delete the blocks. |
| 333 | for( int i=0; i<_blockPtrs.Size(); ++i ) { |
nothing calls this directly
no outgoing calls
no test coverage detected