diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-27 13:16:26 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-30 22:33:07 (GMT) |
commit | 3af822cd8f2197d176fa918f08f10e22dc3d4730 (patch) | |
tree | 8c8cac7550c41f45c872b8da15193e6729c17304 | |
parent | c4f751604b1f76ad8d5215fb14c2838ed8c8a330 (diff) | |
download | CMake-3af822cd8f2197d176fa918f08f10e22dc3d4730.zip CMake-3af822cd8f2197d176fa918f08f10e22dc3d4730.tar.gz CMake-3af822cd8f2197d176fa918f08f10e22dc3d4730.tar.bz2 |
cmXCode21Object: simplify streaming expression
-rw-r--r-- | Source/cmXCode21Object.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmXCode21Object.cxx b/Source/cmXCode21Object.cxx index 9b0dc58..7a40eaa 100644 --- a/Source/cmXCode21Object.cxx +++ b/Source/cmXCode21Object.cxx @@ -26,9 +26,7 @@ void cmXCode21Object::PrintComment(std::ostream& out) if (this->Comment.empty()) { return; } - out << " /* "; - out << this->Comment; - out << " */"; + out << " /* " << this->Comment << " */"; } void cmXCode21Object::PrintList( |