Noise: Prevent unittest crash caused by division by zero
[oweals/minetest.git] / src / itemgroup.h
index 2206857fd48b652c466246418b820ec0f59bce28..e9d050cd11000eb67e56623a2903c29d6feb89b8 100644 (file)
@@ -21,9 +21,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #define ITEMGROUP_HEADER
 
 #include <string>
-#include "util/cpp11_container.h"
+#include <unordered_map>
 
-typedef UNORDERED_MAP<std::string, int> ItemGroupList;
+typedef std::unordered_map<std::string, int> ItemGroupList;
 
 static inline int itemgroup_get(const ItemGroupList &groups, const std::string &name)
 {