Skip to content

Commit

Permalink
Fix #67
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackerpilot committed Mar 9, 2015
1 parent 745ffd6 commit 401631b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/dfmt.d
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ private:
{
writeToken();
if (!currentIs(tok!"*") && !currentIs(tok!")") && !currentIs(tok!"[")
&& !currentIs(tok!","))
&& !currentIs(tok!",") && !currentIs(tok!";"))
{
write(" ");
}
Expand Down
1 change: 1 addition & 0 deletions tests/issue0067.d
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alias Key = void* ;
1 change: 1 addition & 0 deletions tests/issue0067.d.ref
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alias Key = void*;

0 comments on commit 401631b

Please sign in to comment.