Refactors test cases to use gtest framework
[junction.git] / junction / QSBR.cpp
index eaab358da9d0a616122b639658ee422431ad868d..c8131e64ac24f7211c0c23258eb7928962ac2c6c 100644 (file)
@@ -14,7 +14,6 @@
 #include <turf/Thread.h>
 #include <turf/Mutex.h>
 #include <turf/RaceDetector.h>
-#include <unordered_map>
 #include <vector>
 
 namespace junction {
@@ -94,7 +93,7 @@ void QSBR::flush() {
     // This is like saying that all contexts are quiescent,
     // so we can issue all actions at once.
     // No lock is taken.
-    TURF_RACE_DETECT_GUARD(m_flushRaceDetector);   // There should be no concurrent operations
+    TURF_RACE_DETECT_GUARD(m_flushRaceDetector); // There should be no concurrent operations
     for (ureg i = 0; i < m_pendingActions.size(); i++)
         m_pendingActions[i]();
     m_pendingActions.clear();