mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
Fix #67
This commit is contained in:
parent
745ffd6a5b
commit
401631b79d
3 changed files with 3 additions and 1 deletions
|
@ -375,7 +375,7 @@ private:
|
|||
{
|
||||
writeToken();
|
||||
if (!currentIs(tok!"*") && !currentIs(tok!")") && !currentIs(tok!"[")
|
||||
&& !currentIs(tok!","))
|
||||
&& !currentIs(tok!",") && !currentIs(tok!";"))
|
||||
{
|
||||
write(" ");
|
||||
}
|
||||
|
|
1
tests/issue0067.d
Normal file
1
tests/issue0067.d
Normal file
|
@ -0,0 +1 @@
|
|||
alias Key = void* ;
|
1
tests/issue0067.d.ref
Normal file
1
tests/issue0067.d.ref
Normal file
|
@ -0,0 +1 @@
|
|||
alias Key = void*;
|
Loading…
Add table
Add a link
Reference in a new issue