Xcode: PrintComment will prepend a whitespace itself before the comment

This commit is contained in:
Gregor Jasny
2015-04-09 10:14:47 +02:00
parent 4bd2544b25
commit 6e8952c193
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ void cmXCode21Object::PrintComment(std::ostream& out)
cmSystemTools::ReplaceString(this->Comment, "\"", "");
}
}
out << "/* ";
out << " /* ";
out << this->Comment;
out << " */";
}