summaryrefslogtreecommitdiffstats
path: root/Source/cmPropertyDefinition.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2012-03-01 15:40:21 (GMT)
committerBrad King <brad.king@kitware.com>2012-03-01 15:40:21 (GMT)
commit09ff226e4c5489188a4e568df06a4f8e373ce5cd (patch)
tree35a70c95898cfc415b460de5dc900b05f96f7ccd /Source/cmPropertyDefinition.h
parent31ab25c0c9298aa833edd118752e97f15f7d8e2a (diff)
parent737c49a357e7a97b213857fd899081d42f38c143 (diff)
downloadCMake-09ff226e4c5489188a4e568df06a4f8e373ce5cd.zip
CMake-09ff226e4c5489188a4e568df06a4f8e373ce5cd.tar.gz
CMake-09ff226e4c5489188a4e568df06a4f8e373ce5cd.tar.bz2
Merge branch 'add-const-qualifiers' into doxygen-fixes
Conflicts: Source/cmPropertyDefinition.h
Diffstat (limited to 'Source/cmPropertyDefinition.h')
-rw-r--r--Source/cmPropertyDefinition.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmPropertyDefinition.h b/Source/cmPropertyDefinition.h
index 4a3c887..16bd148 100644
--- a/Source/cmPropertyDefinition.h
+++ b/Source/cmPropertyDefinition.h
@@ -40,7 +40,7 @@ public:
cmPropertyDefinition() { this->Chained = false; };
/// Is the property chained?
- bool IsChained() {return this->Chained; };
+ bool IsChained() const { return this->Chained; };
/// Get the section if any
const std::string &GetDocumentationSection() const {