From 967792a6627a5c01d8461b80bc11b235e35003c6 Mon Sep 17 00:00:00 2001 From: Oleksandr Koval Date: Fri, 11 Sep 2020 20:31:11 +0300 Subject: cmState: store commands in unordered_map --- Source/cmState.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/cmState.h b/Source/cmState.h index 14870eb..dc3ba65 100644 --- a/Source/cmState.h +++ b/Source/cmState.h @@ -5,10 +5,10 @@ #include "cmConfigure.h" // IWYU pragma: keep #include -#include #include #include #include +#include #include #include "cmDefinitions.h" @@ -219,8 +219,8 @@ private: cmPropertyDefinitionMap PropertyDefinitions; std::vector EnabledLanguages; - std::map BuiltinCommands; - std::map ScriptedCommands; + std::unordered_map BuiltinCommands; + std::unordered_map ScriptedCommands; cmPropertyMap GlobalProperties; std::unique_ptr CacheManager; std::unique_ptr GlobVerificationManager; -- cgit v0.12