diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-06-03 07:26:59 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-06-08 10:25:35 (GMT) |
commit | e0a8ff31480df672e42e2382e8ed7f33ea65afb4 (patch) | |
tree | b7a7b0e3d27d9d7c8d7c84e9f1a7ba4956e1d671 /Source/cmPropertyMap.h | |
parent | 8d934d861be8c2a8b43d4c421715fb1e8c0c54fd (diff) | |
download | CMake-e0a8ff31480df672e42e2382e8ed7f33ea65afb4.zip CMake-e0a8ff31480df672e42e2382e8ed7f33ea65afb4.tar.gz CMake-e0a8ff31480df672e42e2382e8ed7f33ea65afb4.tar.bz2 |
cmPropertyMap: Use std::string as value container class
Diffstat (limited to 'Source/cmPropertyMap.h')
-rw-r--r-- | Source/cmPropertyMap.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmPropertyMap.h b/Source/cmPropertyMap.h index 4fcbf58..165eb92 100644 --- a/Source/cmPropertyMap.h +++ b/Source/cmPropertyMap.h @@ -5,8 +5,6 @@ #include "cmConfigure.h" // IWYU pragma: keep -#include "cmProperty.h" - #include <map> #include <string> #include <utility> @@ -35,7 +33,7 @@ public: std::vector<std::pair<std::string, std::string>> GetList() const; private: - std::map<std::string, cmProperty> Map_; + std::map<std::string, std::string> Map_; }; #endif |