Switched map/hash_map/set for caching to unordered_map/unordered_set.

This commit is contained in:
spx
2011-02-18 16:26:58 +00:00
parent 84c91cb1ba
commit a2316446ca
6 changed files with 28 additions and 28 deletions

View File

@ -20,7 +20,7 @@
#define __GROUP_H__
#include <string>
#include <set>
#include <unordered_set>
class CGroup
{
@ -36,7 +36,7 @@ protected:
private:
std::wstring CreateGroup(const std::wstring& str);
std::set<std::wstring> m_Groups;
std::unordered_set<std::wstring> m_Groups;
std::wstring m_OldGroups;
};