From 75a02152c2f634f66ed4ad9e8f736a17cc23484a Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 14 Jan 2008 11:07:05 -0500 Subject: [PATCH] COMP: Fix warning about backslash at end of c++ comment. --- Source/cmGlobalXCodeGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index b59e949df..d16148072 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -2920,7 +2920,7 @@ void cmGlobalXCodeGenerator::AppendDefines(std::string& defs, // 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()? "" : " ";