From 261491fe171edb41c2dabce0fd90f282fb11bf6a Mon Sep 17 00:00:00 2001 From: "Yury G. Kudryashov" Date: Fri, 24 Feb 2012 23:37:02 +0400 Subject: [PATCH] cmPropertyDefinition::IsChained is const --- Source/cmPropertyDefinition.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmPropertyDefinition.h b/Source/cmPropertyDefinition.h index f68db87f6..58d14722c 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 {