diff options
author | Brad King <brad.king@kitware.com> | 2008-01-14 16:07:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-14 16:07:05 (GMT) |
commit | 75a02152c2f634f66ed4ad9e8f736a17cc23484a (patch) | |
tree | a7b7624f4e9c944da91300f5069d9112861ba11b /Source | |
parent | 8262ccfd4efddd4928070c637ef7c414633b4b1e (diff) | |
download | CMake-75a02152c2f634f66ed4ad9e8f736a17cc23484a.zip CMake-75a02152c2f634f66ed4ad9e8f736a17cc23484a.tar.gz CMake-75a02152c2f634f66ed4ad9e8f736a17cc23484a.tar.bz2 |
COMP: Fix warning about backslash at end of c++ comment.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index b59e949..d161480 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()? "" : " "; |