mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Switched map/hash_map/set for caching to unordered_map/unordered_set.
This commit is contained in:
@ -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;
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user