| 111 | }; |
| 112 | |
| 113 | PoolAllocator::PoolAllocator(): |
| 114 | impl_(new PoolAllocatorImpl(new NewAllocator)) |
| 115 | { |
| 116 | } |
| 117 | |
| 118 | PoolAllocator::PoolAllocator(Allocator *a): |
| 119 | impl_(new PoolAllocatorImpl(a)) |
nothing calls this directly
no outgoing calls
no test coverage detected