mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-08 15:19:51 -05:00
Xcode: Do not add whitespace after attribute group opening brace
This suppresses the extra space that would be generated if the separator is a space. The conditional block is also used in this form elsewhere.
This commit is contained in:
@@ -139,7 +139,11 @@ void cmXCodeObject::Print(std::ostream& out)
|
||||
else if(object->TypeValue == ATTRIBUTE_GROUP)
|
||||
{
|
||||
std::map<std::string, cmXCodeObject*>::iterator j;
|
||||
out << i->first << " = {" << separator;
|
||||
out << i->first << " = {";
|
||||
if(separator == "\n")
|
||||
{
|
||||
out << separator;
|
||||
}
|
||||
for(j = object->ObjectAttributes.begin(); j !=
|
||||
object->ObjectAttributes.end(); ++j)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user