From 3af822cd8f2197d176fa918f08f10e22dc3d4730 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 27 Jul 2023 09:16:26 -0400 Subject: cmXCode21Object: simplify streaming expression --- Source/cmXCode21Object.cxx | 4 +--- 1 file changed, 1 insertion(+), 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( -- cgit v0.12