| 1431 | FreeList() : freeListHead(nullptr) { } |
| 1432 | FreeList(FreeList&& other) : freeListHead(other.freeListHead.load(std::memory_order_relaxed)) { other.freeListHead.store(nullptr, std::memory_order_relaxed); } |
| 1433 | void swap(FreeList& other) { details::swap_relaxed(freeListHead, other.freeListHead); } |
| 1434 | |
| 1435 | FreeList(FreeList const&) MOODYCAMEL_DELETE_FUNCTION; |
| 1436 | FreeList& operator=(FreeList const&) MOODYCAMEL_DELETE_FUNCTION; |
nothing calls this directly
no test coverage detected