| 12 | size = chunkSize; |
| 13 | } |
| 14 | ~ChunkedStackPool() |
| 15 | { |
| 16 | while(first) |
| 17 | { |
| 18 | StackChunk *next = first->next; |
| 19 | NULLC::dealloc(first); |
| 20 | first = next; |
| 21 | } |
| 22 | curr = first = NULL; |
| 23 | size = chunkSize; |
| 24 | } |
| 25 | |
| 26 | void Clear() |
| 27 | { |
no outgoing calls
no test coverage detected