X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fitemgroup.h;h=fcf72064979bcc600b7254e13719c194c17bac72;hb=ce0d81a8255886495f5b04ea385b9e37c554db57;hp=c6c36dcc4f03f8489c802b514f8987de46014f1c;hpb=9f031a67594162a53b07acbfbc65faf8c4938e99;p=dragonfireclient.git diff --git a/src/itemgroup.h b/src/itemgroup.h index c6c36dcc4..fcf720649 100644 --- a/src/itemgroup.h +++ b/src/itemgroup.h @@ -1,6 +1,6 @@ /* -Minetest-c55 -Copyright (C) 2012 celeron55, Perttu Ahola +Minetest +Copyright (C) 2013 celeron55, Perttu Ahola This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -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 -