From 700ad601c17b5d1dbf435172aa2c1074d27530f8 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Wed, 4 Mar 2015 17:49:02 -0800 Subject: [PATCH] Fix #29 --- src/dfmt.d | 3 ++- tests/issue0029.d | 4 ++++ tests/issue0029.d.ref | 4 ++++ 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 tests/issue0029.d create mode 100644 tests/issue0029.d.ref diff --git a/src/dfmt.d b/src/dfmt.d index 8c26d1f..387890e 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -350,7 +350,8 @@ private: .equalRange(current.index).empty) { writeToken(); - write(" "); + if (current.type != tok!"*" && current.type != tok!")") + write(" "); break; } goto binary; diff --git a/tests/issue0029.d b/tests/issue0029.d new file mode 100644 index 0000000..75d0c8b --- /dev/null +++ b/tests/issue0029.d @@ -0,0 +1,4 @@ +unittest +{ + char * * buf = cast(char * * ) mem.xmalloc(dim * (char * ).sizeof); +} diff --git a/tests/issue0029.d.ref b/tests/issue0029.d.ref new file mode 100644 index 0000000..b18662a --- /dev/null +++ b/tests/issue0029.d.ref @@ -0,0 +1,4 @@ +unittest +{ + char** buf = cast(char**) mem.xmalloc(dim * (char*).sizeof); +}