| 3 | using namespace base; |
| 4 | |
| 5 | CBlockMemoryPool::CBlockMemoryPool(const int large_sz, const int add_num) : |
| 6 | _number_large_add_nodes(add_num), |
| 7 | _large_size(large_sz){ |
| 8 | |
| 9 | } |
| 10 | |
| 11 | CBlockMemoryPool::~CBlockMemoryPool() { |
| 12 | // free all memory |
nothing calls this directly
no outgoing calls
no test coverage detected