Skip to content

Commit 2e944b4

Browse files
committed
Refactoring
1 parent 65f2225 commit 2e944b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Library/CppLang/SourceCompiler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,10 @@ static public void AppendEx(this StringBuilder builder, YStatement statement)
136136

137137
builder.Append("if (");
138138
AppendEx(builder, @if.Condition);
139-
builder.Append(") ");
139+
builder.Append(")");
140140
AppendEx(builder, @if.Statement);
141141
if (@if.ElseStatement != null) {
142-
builder.Append(" else ");
142+
builder.Append("else");
143143
AppendEx(builder, @if.ElseStatement);
144144
}
145145
}

0 commit comments

Comments
 (0)