| 1581 | struct Block |
| 1582 | { |
| 1583 | Block() |
| 1584 | : next(nullptr), elementsCompletelyDequeued(0), freeListRefs(0), freeListNext(nullptr), dynamicallyAllocated(true) |
| 1585 | { |
| 1586 | #ifdef MCDBGQ_TRACKMEM |
| 1587 | owner = nullptr; |
| 1588 | #endif |
| 1589 | } |
| 1590 | |
| 1591 | template<InnerQueueContext context> |
| 1592 | inline bool is_empty() const |
nothing calls this directly
no outgoing calls
no test coverage detected