MCPcopy Create free account
hub / github.com/cameron314/concurrentqueue / swap

Method swap

internal/concurrentqueue_internal_debug.h:60–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58 DebugFreeList() : head(nullptr) { }
59 DebugFreeList(DebugFreeList&& other) : head(other.head) { other.head = nullptr; }
60 void swap(DebugFreeList& other) { std::swap(head, other.head); }
61
62 inline void add(N* node)
63 {

Callers

nothing calls this directly

Calls 1

swapFunction · 0.50

Tested by

no test coverage detected