Run clang-format
[junction.git] / junction / extra / impl / MapAdapter_Linear.h
index 525eb7493289a856de8d6f61d58f246ebad63c9c..d991782e896d99a6a0189badeefc40ce8d897d7d 100644 (file)
@@ -24,31 +24,31 @@ namespace extra {
 class MapAdapter {
 public:
     static TURF_CONSTEXPR const char* MapName = "Junction Linear map";
-    
+
     MapAdapter(ureg) {
     }
 
     class ThreadContext {
     private:
         QSBR::Context m_qsbrContext;
-        
+
     public:
         ThreadContext(MapAdapter&, ureg) {
         }
-        
+
         void registerThread() {
             m_qsbrContext = DefaultQSBR.createContext();
         }
-        
+
         void unregisterThread() {
             DefaultQSBR.destroyContext(m_qsbrContext);
         }
-        
+
         void update() {
             DefaultQSBR.update(m_qsbrContext);
         }
     };
-    
+
     typedef ConcurrentMap_Linear<u32, void*> Map;
 
     static ureg getInitialCapacity(ureg maxPopulation) {