mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-03 19:13:49 +00:00
Refactor(Core/Misc): Remove remaining COMPILER_HAS_CPP11_SUPPORT related macros (#1627)
* Delete macros UNORDERED_MAP * Delete macros UNORDERED_SET
This commit is contained in:
@@ -308,9 +308,9 @@ class Channel
|
||||
}
|
||||
}
|
||||
|
||||
typedef UNORDERED_MAP<uint64, PlayerInfo> PlayerContainer;
|
||||
typedef UNORDERED_MAP<uint32, uint32> BannedContainer;
|
||||
typedef UNORDERED_SET<Player*> PlayersWatchingContainer;
|
||||
typedef std::unordered_map<uint64, PlayerInfo> PlayerContainer;
|
||||
typedef std::unordered_map<uint32, uint32> BannedContainer;
|
||||
typedef std::unordered_set<Player*> PlayersWatchingContainer;
|
||||
|
||||
bool _announce;
|
||||
bool _ownership;
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
class ChannelMgr
|
||||
{
|
||||
typedef UNORDERED_MAP<std::wstring, Channel*> ChannelMap;
|
||||
typedef std::unordered_map<std::wstring, Channel*> ChannelMap;
|
||||
typedef std::map<std::string, ChannelRights> ChannelRightsMap;
|
||||
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user