Remove unused unordered_map

This commit is contained in:
Rapptz 2013-12-02 23:50:41 -05:00
parent 6ff859ba29
commit 101e80c913
2 changed files with 0 additions and 3 deletions

View File

@ -58,7 +58,6 @@ private:
std::unique_ptr<lua_State, void(*)(lua_State*)> L;
table reg;
table global;
std::unordered_map<std::string, std::unique_ptr<detail::lua_func>> funcs;
public:
state():
L(luaL_newstate(), lua_close),

View File

@ -76,9 +76,7 @@ public:
push();
return lua_rawlen(state(), -1);
}
private:
template<typename T, typename TFx>
table& set_fx(std::true_type, T&& key, TFx&& fx) {
typedef typename std::remove_pointer<typename std::decay<TFx>::type>::type clean_fx;