diff --git a/src/gc.h b/src/gc.h index 9717dcbee..d2c4066f7 100644 --- a/src/gc.h +++ b/src/gc.h @@ -1,6 +1,7 @@ #pragma once #include #include +#include template class GarbageCollector @@ -99,6 +100,6 @@ private: fastlock m_lock { "Garbage Collector"}; std::vector m_vecepochs; - std::set m_setepochOutstanding; + std::unordered_set m_setepochOutstanding; uint64_t m_epochNext = 0; }; \ No newline at end of file