| 176 | |
| 177 | template<typename T> |
| 178 | T* CMemoryPool::PoolLargeMalloc() { |
| 179 | T* ret = (T*)_block_pool.PoolLargeMalloc(); |
| 180 | return ret; |
| 181 | } |
| 182 | |
| 183 | template<typename T> |
| 184 | void CMemoryPool::PoolLargeFree(T* &m) { |
nothing calls this directly
no outgoing calls
no test coverage detected