[cmake-commits] king committed cmDocumentation.h 1.19 1.20

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Feb 2 14:13:53 EST 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv3116

Modified Files:
	cmDocumentation.h 
Log Message:
COMP: Fix void return failure.


Index: cmDocumentation.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmDocumentation.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- cmDocumentation.h	2 Feb 2007 14:11:41 -0000	1.19
+++ cmDocumentation.h	2 Feb 2007 19:13:51 -0000	1.20
@@ -119,7 +119,7 @@
 
       /** 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,



More information about the Cmake-commits mailing list