mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
Fix #61
This commit is contained in:
parent
e737d56d0d
commit
3d919d191d
3 changed files with 3 additions and 1 deletions
|
@ -370,7 +370,7 @@ private:
|
|||
.equalRange(current.index).empty)
|
||||
{
|
||||
writeToken();
|
||||
if (current.type != tok!"*" && current.type != tok!")")
|
||||
if (current.type != tok!"*" && current.type != tok!")" && current.type != tok!"[")
|
||||
write(" ");
|
||||
break;
|
||||
}
|
||||
|
|
1
tests/issue0061.d
Normal file
1
tests/issue0061.d
Normal file
|
@ -0,0 +1 @@
|
|||
const(char)* [VC_SAVED_IDENT_CNT] saved_idents;
|
1
tests/issue0061.d.ref
Normal file
1
tests/issue0061.d.ref
Normal file
|
@ -0,0 +1 @@
|
|||
const(char)*[VC_SAVED_IDENT_CNT] saved_idents;
|
Loading…
Add table
Add a link
Reference in a new issue