Browse Source

COMP: Fix void return failure.

Brad King 19 years ago
parent
commit
1feb4a09b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmDocumentation.h

+ 1 - 1
Source/cmDocumentation.h

@@ -119,7 +119,7 @@ public:
 
       /** Append an entry to this section. */
       void Append(const cmDocumentationEntry& entry)
-        { return this->Entries.push_back(entry); }
+        { this->Entries.push_back(entry); }
 
       /** Set the contents of this section. */
       void Set(const cmDocumentationEntry* header,