Format do like body after function attributes
This commit is contained in:
parent
821b9be9e9
commit
995c21ab87
|
@ -274,6 +274,10 @@ private:
|
|||
else
|
||||
formatBlockHeader();
|
||||
}
|
||||
else if ((current.text == "body" || current == tok!"do") && peekBackIsFunctionDeclarationEnding())
|
||||
{
|
||||
formatKeyword();
|
||||
}
|
||||
else if (currentIs(tok!"do"))
|
||||
{
|
||||
formatBlockHeader();
|
||||
|
@ -321,10 +325,6 @@ private:
|
|||
inlineElse = true;
|
||||
formatKeyword();
|
||||
}
|
||||
else if (current.text == "body" && peekBackIsFunctionDeclarationEnding())
|
||||
{
|
||||
formatKeyword();
|
||||
}
|
||||
else if (isBasicType(current.type))
|
||||
{
|
||||
writeToken();
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
void f() return
|
||||
do
|
||||
{
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
void f() return
|
||||
do
|
||||
{
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
void f() return
|
||||
do {
|
||||
}
|
Loading…
Reference in New Issue