| 1460 | struct FreeListNode |
| 1461 | { |
| 1462 | FreeListNode() : freeListRefs(0), freeListNext(nullptr) { } |
| 1463 | |
| 1464 | std::atomic<std::uint32_t> freeListRefs; |
| 1465 | std::atomic<N*> freeListNext; |
nothing calls this directly
no outgoing calls
no test coverage detected