|
@@ -5,10 +5,10 @@
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include <functional>
|
|
#include <functional>
|
|
|
-#include <map>
|
|
|
|
|
#include <memory>
|
|
#include <memory>
|
|
|
#include <set>
|
|
#include <set>
|
|
|
#include <string>
|
|
#include <string>
|
|
|
|
|
+#include <unordered_map>
|
|
|
#include <vector>
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "cmDefinitions.h"
|
|
#include "cmDefinitions.h"
|
|
@@ -219,8 +219,8 @@ private:
|
|
|
|
|
|
|
|
cmPropertyDefinitionMap PropertyDefinitions;
|
|
cmPropertyDefinitionMap PropertyDefinitions;
|
|
|
std::vector<std::string> EnabledLanguages;
|
|
std::vector<std::string> EnabledLanguages;
|
|
|
- std::map<std::string, Command> BuiltinCommands;
|
|
|
|
|
- std::map<std::string, Command> ScriptedCommands;
|
|
|
|
|
|
|
+ std::unordered_map<std::string, Command> BuiltinCommands;
|
|
|
|
|
+ std::unordered_map<std::string, Command> ScriptedCommands;
|
|
|
cmPropertyMap GlobalProperties;
|
|
cmPropertyMap GlobalProperties;
|
|
|
std::unique_ptr<cmCacheManager> CacheManager;
|
|
std::unique_ptr<cmCacheManager> CacheManager;
|
|
|
std::unique_ptr<cmGlobVerificationManager> GlobVerificationManager;
|
|
std::unique_ptr<cmGlobVerificationManager> GlobVerificationManager;
|