diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2015-04-09 08:14:47 (GMT) |
---|---|---|
committer | Gregor Jasny <gjasny@googlemail.com> | 2015-04-17 19:50:05 (GMT) |
commit | 6e8952c19385acb0ff9f58c2a462d91dd0624e05 (patch) | |
tree | ab9501315bf2119a3ee90274526a744cb3c2b83f /Source/cmXCode21Object.cxx | |
parent | 4bd2544b25655b6e20e5098a5f4cdd973288c106 (diff) | |
download | CMake-6e8952c19385acb0ff9f58c2a462d91dd0624e05.zip CMake-6e8952c19385acb0ff9f58c2a462d91dd0624e05.tar.gz CMake-6e8952c19385acb0ff9f58c2a462d91dd0624e05.tar.bz2 |
Xcode: PrintComment will prepend a whitespace itself before the comment
Diffstat (limited to 'Source/cmXCode21Object.cxx')
-rw-r--r-- | Source/cmXCode21Object.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXCode21Object.cxx b/Source/cmXCode21Object.cxx index 855e1ad..96f7b0f 100644 --- a/Source/cmXCode21Object.cxx +++ b/Source/cmXCode21Object.cxx @@ -31,7 +31,7 @@ void cmXCode21Object::PrintComment(std::ostream& out) cmSystemTools::ReplaceString(this->Comment, "\"", ""); } } - out << "/* "; + out << " /* "; out << this->Comment; out << " */"; } |