mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-20 04:24:36 +08:00
cmPropertyDefinition::IsChained is const
This commit is contained in:
@@ -31,7 +31,7 @@ public:
|
|||||||
cmPropertyDefinition() { this->Chained = false; };
|
cmPropertyDefinition() { this->Chained = false; };
|
||||||
|
|
||||||
// is it chained?
|
// is it chained?
|
||||||
bool IsChained() {return this->Chained; };
|
bool IsChained() const { return this->Chained; };
|
||||||
|
|
||||||
// Get the section if any
|
// Get the section if any
|
||||||
const std::string &GetDocumentationSection() const {
|
const std::string &GetDocumentationSection() const {
|
||||||
|
Reference in New Issue
Block a user