From 1feb4a09b078452c42e74a1caeb432f6ccc7da68 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 2 Feb 2007 14:13:51 -0500 Subject: COMP: Fix void return failure. --- Source/cmDocumentation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmDocumentation.h b/Source/cmDocumentation.h index f0d1126..d97f77f 100644 --- a/Source/cmDocumentation.h +++ b/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, -- cgit v0.12