Fix #361 - Unexpected empty new line if function header ends with a comment
This commit is contained in:
parent
6d2a56e15e
commit
3af8edc57f
|
@ -473,7 +473,7 @@ private:
|
|||
else if (!currentIs(tok!"{"))
|
||||
write(" ");
|
||||
}
|
||||
else if (!currentIs(tok!"{"))
|
||||
else if (!currentIs(tok!"{") && !currentIs(tok!"in") && !currentIs(tok!"out"))
|
||||
{
|
||||
if (currentIs(tok!")") && indents.topIs(tok!","))
|
||||
indents.pop();
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
void foo() /**/
|
||||
in
|
||||
{
|
||||
}
|
||||
body
|
||||
{
|
||||
}
|
||||
|
||||
void bar() /**/
|
||||
out
|
||||
{
|
||||
}
|
||||
body
|
||||
{
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
void foo() /**/
|
||||
in
|
||||
{
|
||||
}
|
||||
body
|
||||
{
|
||||
}
|
||||
|
||||
void bar() /**/
|
||||
out
|
||||
{
|
||||
}
|
||||
body
|
||||
{
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
void foo() /**/
|
||||
in {
|
||||
}
|
||||
body {
|
||||
}
|
||||
|
||||
void bar() /**/
|
||||
out {
|
||||
}
|
||||
body {
|
||||
}
|
Loading…
Reference in New Issue