Fix #21
This commit is contained in:
parent
bc4556b4d5
commit
26e7212e0a
11
src/dfmt.d
11
src/dfmt.d
|
@ -289,6 +289,17 @@ private:
|
|||
newline();
|
||||
}
|
||||
}
|
||||
else if (current.type == tok!"else")
|
||||
{
|
||||
writeToken();
|
||||
if (current.type == tok!"if")
|
||||
write(" ");
|
||||
else if (current.type != tok!"{")
|
||||
{
|
||||
pushIndent();
|
||||
newline();
|
||||
}
|
||||
}
|
||||
else if (isKeyword(current.type))
|
||||
{
|
||||
switch (current.type)
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
void func()
|
||||
{
|
||||
if (!negative)
|
||||
return this;
|
||||
else if (a.negative)
|
||||
return max();
|
||||
else
|
||||
return a.value == 0 ? a : this;
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
void func()
|
||||
{
|
||||
if (!negative)
|
||||
return this;
|
||||
else if (a.negative)
|
||||
return max();
|
||||
else
|
||||
return a.value == 0 ? a : this;
|
||||
}
|
Loading…
Reference in New Issue