COMP: Fix void return failure.

This commit is contained in:
Brad King 2007-02-02 14:13:51 -05:00
parent 2d4bc73d39
commit 1feb4a09b0
1 changed files with 1 additions and 1 deletions

View File

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