diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-02-22 09:09:26 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-02-22 09:10:42 (GMT) |
commit | 8182c21d2d40506c3d4b0751e559173d0b47cdb5 (patch) | |
tree | 11bfe3cc6db300144e2b113bed5dbbab1e3151c4 /Source/cmQtAutoGeneratorMocUic.h | |
parent | 84819c79e7efde0155dbb8431d0a205b325ce1cc (diff) | |
download | CMake-8182c21d2d40506c3d4b0751e559173d0b47cdb5.zip CMake-8182c21d2d40506c3d4b0751e559173d0b47cdb5.tar.gz CMake-8182c21d2d40506c3d4b0751e559173d0b47cdb5.tar.bz2 |
Autogen: Use std::unordered_set instead of std::set for skip lists
Diffstat (limited to 'Source/cmQtAutoGeneratorMocUic.h')
-rw-r--r-- | Source/cmQtAutoGeneratorMocUic.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmQtAutoGeneratorMocUic.h b/Source/cmQtAutoGeneratorMocUic.h index b40b48f..989d9ab 100644 --- a/Source/cmQtAutoGeneratorMocUic.h +++ b/Source/cmQtAutoGeneratorMocUic.h @@ -20,6 +20,7 @@ #include <set> #include <string> #include <thread> +#include <unordered_set> #include <utility> #include <vector> @@ -133,7 +134,7 @@ public: std::string CompFileAbs; std::string PredefsFileRel; std::string PredefsFileAbs; - std::set<std::string> SkipList; + std::unordered_set<std::string> SkipList; std::vector<std::string> IncludePaths; std::vector<std::string> Includes; std::vector<std::string> Definitions; @@ -164,7 +165,7 @@ public: bool Enabled = false; bool SettingsChanged = false; std::string Executable; - std::set<std::string> SkipList; + std::unordered_set<std::string> SkipList; std::vector<std::string> TargetOptions; std::map<std::string, std::vector<std::string>> Options; std::vector<std::string> SearchPaths; |