COMP: Fix warning about backslash at end of c++ comment.

This commit is contained in:
Brad King 2008-01-14 11:07:05 -05:00
parent 8262ccfd4e
commit 75a02152c2
1 changed files with 1 additions and 1 deletions

View File

@ -2920,7 +2920,7 @@ void cmGlobalXCodeGenerator::AppendDefines(std::string& defs,
// We escape everything as follows: // We escape everything as follows:
// - Place each definition in single quotes '' // - Place each definition in single quotes ''
// - Escape a single quote as \\' // - 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 // Note that in the code below we need one more level of escapes for
// C string syntax in this source file. // C string syntax in this source file.
const char* sep = defs.empty()? "" : " "; const char* sep = defs.empty()? "" : " ";