| 345 | public: |
| 346 | MemPoolT() : _root(0), _currentAllocs(0), _nAllocs(0), _maxAllocs(0), _nUntracked(0) {} |
| 347 | ~MemPoolT() { |
| 348 | Clear(); |
| 349 | } |
| 350 | |
| 351 | void Clear() { |
| 352 | // Delete the blocks. |
nothing calls this directly
no outgoing calls
no test coverage detected