COMP: Fix void return failure.
This commit is contained in:
parent
2d4bc73d39
commit
1feb4a09b0
|
@ -119,7 +119,7 @@ public:
|
||||||
|
|
||||||
/** Append an entry to this section. */
|
/** Append an entry to this section. */
|
||||||
void Append(const cmDocumentationEntry& entry)
|
void Append(const cmDocumentationEntry& entry)
|
||||||
{ return this->Entries.push_back(entry); }
|
{ this->Entries.push_back(entry); }
|
||||||
|
|
||||||
/** Set the contents of this section. */
|
/** Set the contents of this section. */
|
||||||
void Set(const cmDocumentationEntry* header,
|
void Set(const cmDocumentationEntry* header,
|
||||||
|
|
Loading…
Reference in New Issue