summaryrefslogtreecommitdiffstats
path: root/Source/cmDocumentation.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-02-02 19:13:51 (GMT)
committerBrad King <brad.king@kitware.com>2007-02-02 19:13:51 (GMT)
commit1feb4a09b078452c42e74a1caeb432f6ccc7da68 (patch)
tree542226f50c409fddc1ada2fe742beeded48c5440 /Source/cmDocumentation.h
parent2d4bc73d399ab23c3d2c0f8f2d6b93c3d7617953 (diff)
downloadCMake-1feb4a09b078452c42e74a1caeb432f6ccc7da68.zip
CMake-1feb4a09b078452c42e74a1caeb432f6ccc7da68.tar.gz
CMake-1feb4a09b078452c42e74a1caeb432f6ccc7da68.tar.bz2
COMP: Fix void return failure.
Diffstat (limited to 'Source/cmDocumentation.h')
-rw-r--r--Source/cmDocumentation.h2
1 files changed, 1 insertions, 1 deletions
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,