mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
Merge new_bindings, closes #151
Refer to 6194ddb43c for new C++11 required changes for mangos based cores
This commit is contained in:
@@ -54,7 +54,7 @@ class ElunaEventProcessor
|
||||
|
||||
public:
|
||||
typedef std::multimap<uint64, LuaEvent*> EventList;
|
||||
typedef UNORDERED_MAP<int, LuaEvent*> EventMap;
|
||||
typedef std::unordered_map<int, LuaEvent*> EventMap;
|
||||
|
||||
ElunaEventProcessor(Eluna** _E, WorldObject* _obj);
|
||||
~ElunaEventProcessor();
|
||||
@@ -80,7 +80,7 @@ private:
|
||||
class EventMgr : public ElunaUtil::RWLockable
|
||||
{
|
||||
public:
|
||||
typedef UNORDERED_SET<ElunaEventProcessor*> ProcessorSet;
|
||||
typedef std::unordered_set<ElunaEventProcessor*> ProcessorSet;
|
||||
ProcessorSet processors;
|
||||
ElunaEventProcessor* globalProcessor;
|
||||
Eluna** E;
|
||||
|
||||
Reference in New Issue
Block a user