Przeglądaj źródła

container: minor changes

Michele Caini 4 lat temu
rodzic
commit
11617291e3
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      src/entt/container/fwd.hpp

+ 2 - 1
src/entt/container/fwd.hpp

@@ -7,7 +7,8 @@
 namespace entt {
 
 template<
-    typename Key, typename Type,
+    typename Key,
+    typename Type,
     typename = std::hash<Key>,
     typename = std::equal_to<Key>,
     typename = std::allocator<std::pair<const Key, Type>>>