summaryrefslogtreecommitdiffstats
path: root/Source/cmPropertyDefinition.h
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-02-24 19:37:02 (GMT)
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-02-24 19:37:02 (GMT)
commit261491fe171edb41c2dabce0fd90f282fb11bf6a (patch)
tree3bfcf8681cb519cb11b87dc553f74dd0dfa10d71 /Source/cmPropertyDefinition.h
parent2437b40933bd8377815a51a8154a81d3a70dc0fc (diff)
downloadCMake-261491fe171edb41c2dabce0fd90f282fb11bf6a.zip
CMake-261491fe171edb41c2dabce0fd90f282fb11bf6a.tar.gz
CMake-261491fe171edb41c2dabce0fd90f282fb11bf6a.tar.bz2
cmPropertyDefinition::IsChained is const
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 f68db87..58d1472 100644
--- a/Source/cmPropertyDefinition.h
+++ b/Source/cmPropertyDefinition.h
@@ -31,7 +31,7 @@ public:
cmPropertyDefinition() { this->Chained = false; };
// is it chained?
- bool IsChained() {return this->Chained; };
+ bool IsChained() const { return this->Chained; };
// Get the section if any
const std::string &GetDocumentationSection() const {