Run clang-format
[junction.git] / junction / extra / impl / MapAdapter_LeapFrog.h
index 02b09cab2616dc8f871beb29dbf4c4291b5cec41..c277044ba1b9654cba79790b9af0de94a6f1dfca 100644 (file)
@@ -24,31 +24,31 @@ namespace extra {
 class MapAdapter {
 public:
     static TURF_CONSTEXPR const char* MapName = "Junction LeapFrog 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_LeapFrog<u32, void*> Map;
 
     static ureg getInitialCapacity(ureg maxPopulation) {