summaryrefslogtreecommitdiffstats
path: root/Source/cmPropertyDefinitionMap.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-06 07:46:38 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-07 07:29:30 (GMT)
commit9058e27a431b01319b18cc4099780fa017ada113 (patch)
treeb79fc44b5223b45d94f4fe98b6344341812aef43 /Source/cmPropertyDefinitionMap.h
parent1c48edf8fc8cec71c780cbb1c587f10df0ab7185 (diff)
downloadCMake-9058e27a431b01319b18cc4099780fa017ada113.zip
CMake-9058e27a431b01319b18cc4099780fa017ada113.tar.gz
CMake-9058e27a431b01319b18cc4099780fa017ada113.tar.bz2
Constify property definition API.
Diffstat (limited to 'Source/cmPropertyDefinitionMap.h')
-rw-r--r--Source/cmPropertyDefinitionMap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmPropertyDefinitionMap.h b/Source/cmPropertyDefinitionMap.h
index 00c7328..f95c721 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