X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fitemgroup.h;h=fcf72064979bcc600b7254e13719c194c17bac72;hb=fcd06d99c66c1e67e733d3750e2e36c2196e92bf;hp=69678064fe606fe3583bc7b9b1e886b35d67460a;hpb=22e186b4aa88b585e71500c4e9a03bf69b0b6191;p=minetest.git diff --git a/src/itemgroup.h b/src/itemgroup.h index 69678064f..fcf720649 100644 --- a/src/itemgroup.h +++ b/src/itemgroup.h @@ -17,23 +17,17 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef ITEMGROUP_HEADER -#define ITEMGROUP_HEADER +#pragma once -#include "irrlichttypes_extrabloated.h" #include -#include +#include -typedef std::map ItemGroupList; +typedef std::unordered_map ItemGroupList; -static inline int itemgroup_get(const ItemGroupList &groups, - const std::string &name) +static inline int itemgroup_get(const ItemGroupList &groups, const std::string &name) { - std::map::const_iterator i = groups.find(name); - if(i == groups.end()) + ItemGroupList::const_iterator i = groups.find(name); + if (i == groups.end()) return 0; return i->second; } - -#endif -