mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 04:29:52 +00:00
cmPropertyDefinition::IsChained is const
This commit is contained in:
parent
2437b40933
commit
261491fe17
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user