diff options
author | Brad King <brad.king@kitware.com> | 2007-02-02 19:13:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-02-02 19:13:51 (GMT) |
commit | 1feb4a09b078452c42e74a1caeb432f6ccc7da68 (patch) | |
tree | 542226f50c409fddc1ada2fe742beeded48c5440 /Source | |
parent | 2d4bc73d399ab23c3d2c0f8f2d6b93c3d7617953 (diff) | |
download | CMake-1feb4a09b078452c42e74a1caeb432f6ccc7da68.zip CMake-1feb4a09b078452c42e74a1caeb432f6ccc7da68.tar.gz CMake-1feb4a09b078452c42e74a1caeb432f6ccc7da68.tar.bz2 |
COMP: Fix void return failure.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmDocumentation.h | 2 |
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, |