| 72 | } |
| 73 | |
| 74 | void operator delete(void *ptr) |
| 75 | { |
| 76 | QueueItem *p = (QueueItem*)ptr; |
| 77 | p->_next = _itemPool; // 相当于接到链表头 |
| 78 | _itemPool = p; |
| 79 | } |
| 80 | |
| 81 | T _data; |
| 82 | QueueItem *_next; |
nothing calls this directly
no outgoing calls
no test coverage detected