| 56 | |
| 57 | public: |
| 58 | ~PoolBase() |
| 59 | { |
| 60 | if(mUsed) |
| 61 | disposeElements(); |
| 62 | |
| 63 | for(void** slabIt = mSlabs.begin(), *slabEnd = mSlabs.end(); slabIt != slabEnd; ++slabIt) |
| 64 | Alloc::deallocate(*slabIt); |
| 65 | } |
| 66 | |
| 67 | // Allocate space for single object |
| 68 | PX_INLINE T* allocate() |
nothing calls this directly
no test coverage detected