summaryrefslogtreecommitdiff
path: root/Source/cmPropertyDefinitionMap.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-06 09:46:38 +0200
committerStephen Kelly <steveire@gmail.com>2015-06-07 09:29:30 +0200
commit9058e27a431b01319b18cc4099780fa017ada113 (patch)
treeb79fc44b5223b45d94f4fe98b6344341812aef43 /Source/cmPropertyDefinitionMap.h
parent1c48edf8fc8cec71c780cbb1c587f10df0ab7185 (diff)
downloadcmake-9058e27a431b01319b18cc4099780fa017ada113.tar.gz
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 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