| 71 | typedef LargeBlock<elemSize, countInBlock> MyLargeBlock; |
| 72 | public: |
| 73 | ObjectBlockPool() |
| 74 | { |
| 75 | freeBlocks = &lastBlock; |
| 76 | activePages = NULL; |
| 77 | lastNum = countInBlock; |
| 78 | } |
| 79 | ~ObjectBlockPool() |
| 80 | { |
| 81 | if(!activePages) |
nothing calls this directly
no outgoing calls
no test coverage detected