| 1474 | FreeList() : freeListHead(nullptr) { } |
| 1475 | FreeList(FreeList&& other) : freeListHead(other.freeListHead.load(std::memory_order_relaxed)) { other.freeListHead.store(nullptr, std::memory_order_relaxed); } |
| 1476 | void swap(FreeList& other) { details::swap_relaxed(freeListHead, other.freeListHead); } |
| 1477 | |
| 1478 | FreeList(FreeList const&) MOODYCAMEL_DELETE_FUNCTION; |
| 1479 | FreeList& operator=(FreeList const&) MOODYCAMEL_DELETE_FUNCTION; |
nothing calls this directly
no test coverage detected