Merge pull request #437 from dlang-community/issue-436
Fix #436 merged-on-behalf-of: Brian Schott <Hackerpilot@users.noreply.github.com>
This commit is contained in:
commit
54a84bd927
|
@ -232,6 +232,18 @@ private:
|
|||
{
|
||||
writeToken();
|
||||
write(" ");
|
||||
while (index < tokens.length)
|
||||
{
|
||||
if (currentIs(tok!"("))
|
||||
formatLeftParenOrBracket();
|
||||
else if (currentIs(tok!")"))
|
||||
{
|
||||
formatRightParen();
|
||||
break;
|
||||
}
|
||||
else
|
||||
writeToken();
|
||||
}
|
||||
}
|
||||
else if (((isBlockHeader() || currentIs(tok!"version")) && peekIs(tok!"("))
|
||||
|| (currentIs(tok!"debug") && peekIs(tok!"{")))
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
extern (Objective-C) int a;
|
|
@ -0,0 +1 @@
|
|||
extern (Objective-C) int a;
|
|
@ -0,0 +1 @@
|
|||
extern (Objective-C) int a;
|
Loading…
Reference in New Issue