diff options
author | Yury G. Kudryashov <urkud.urkud@gmail.com> | 2012-02-24 19:37:02 (GMT) |
---|---|---|
committer | Yury G. Kudryashov <urkud.urkud@gmail.com> | 2012-02-24 19:37:02 (GMT) |
commit | 261491fe171edb41c2dabce0fd90f282fb11bf6a (patch) | |
tree | 3bfcf8681cb519cb11b87dc553f74dd0dfa10d71 | |
parent | 2437b40933bd8377815a51a8154a81d3a70dc0fc (diff) | |
download | CMake-261491fe171edb41c2dabce0fd90f282fb11bf6a.zip CMake-261491fe171edb41c2dabce0fd90f282fb11bf6a.tar.gz CMake-261491fe171edb41c2dabce0fd90f282fb11bf6a.tar.bz2 |
cmPropertyDefinition::IsChained is const
-rw-r--r-- | Source/cmPropertyDefinition.h | 2 |
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 { |