From 4303be8a4c343ad9085c2857cabc8e55f3bac525 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Sun, 28 Nov 2010 02:23:05 +0100 Subject: Changing the hashmap in LuaTask to a true C++ map. --- include/LuaTask.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/LuaTask.h') diff --git a/include/LuaTask.h b/include/LuaTask.h index 3695dcb..ae18d40 100644 --- a/include/LuaTask.h +++ b/include/LuaTask.h @@ -21,7 +21,7 @@ #define __LUATASK_H__ #include -#include +#include #include #include @@ -50,12 +50,12 @@ class LuaTask : public Task { String task; bool destroy_VM; - static htab * h; + static std::map h; }; class LuaTaskMan : public LuaObject { public: static void pushstatics(Lua *) throw (GeneralException); -}; +}; #endif -- cgit v1.2.3