cmPropertyDefinition::IsChained is const

This commit is contained in:
Yury G. Kudryashov 2012-02-24 23:37:02 +04:00
parent 2437b40933
commit 261491fe17
1 changed files with 1 additions and 1 deletions

View File

@ -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 {