Просмотр исходного кода

COMP: Fix void return failure.

Brad King 19 лет назад
Родитель
Сommit
1feb4a09b0
1 измененных файлов с 1 добавлено и 1 удалено
  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,