Run clang-format
[junction.git] / junction / extra / impl / MapAdapter_StdMap.h
index 4d287cc4df4035b3734285ffc85cac1dab1f1efd..fba38ae21ccbb5ba121663cdc45ed36f8023e024 100644 (file)
@@ -62,7 +62,7 @@ public:
             MapType::iterator iter = m_map.find(key);
             return (iter == m_map.end()) ? NULL : iter->second;
         }
-    
+
         void erase(u32 key) {
             std::lock_guard<std::mutex> guard(m_mutex);
             m_map.erase(key);