[cmake-commits] king committed cmGlobalXCodeGenerator.cxx 1.176 1.177

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Jan 14 11:07:08 EST 2008


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

Modified Files:
	cmGlobalXCodeGenerator.cxx 
Log Message:
COMP: Fix warning about backslash at end of c++ comment.


Index: cmGlobalXCodeGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalXCodeGenerator.cxx,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -d -r1.176 -r1.177
--- cmGlobalXCodeGenerator.cxx	14 Jan 2008 14:20:57 -0000	1.176
+++ cmGlobalXCodeGenerator.cxx	14 Jan 2008 16:07:05 -0000	1.177
@@ -2920,7 +2920,7 @@
   // We escape everything as follows:
   //   - Place each definition in single quotes ''
   //   - Escape a single quote as \\'
-  //   - Escape a backslash as \\\\
+  //   - Escape a backslash as \\\\ since it itself is an escape
   // Note that in the code below we need one more level of escapes for
   // C string syntax in this source file.
   const char* sep = defs.empty()? "" : " ";



More information about the Cmake-commits mailing list