diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-06 09:46:38 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-07 09:29:30 +0200 |
commit | 9058e27a431b01319b18cc4099780fa017ada113 (patch) | |
tree | b79fc44b5223b45d94f4fe98b6344341812aef43 /Source/cmPropertyDefinitionMap.h | |
parent | 1c48edf8fc8cec71c780cbb1c587f10df0ab7185 (diff) | |
download | cmake-9058e27a431b01319b18cc4099780fa017ada113.tar.gz |
Constify property definition API.
Diffstat (limited to 'Source/cmPropertyDefinitionMap.h')
-rw-r--r-- | Source/cmPropertyDefinitionMap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmPropertyDefinitionMap.h b/Source/cmPropertyDefinitionMap.h index 00c7328c6e..f95c721a84 100644 --- a/Source/cmPropertyDefinitionMap.h +++ b/Source/cmPropertyDefinitionMap.h @@ -27,10 +27,10 @@ public: bool chain); // has a named property been defined - bool IsPropertyDefined(const std::string& name); + bool IsPropertyDefined(const std::string& name) const; // is a named property set to chain - bool IsPropertyChained(const std::string& name); + bool IsPropertyChained(const std::string& name) const; }; #endif |