From 158c679349dc1ae88ebb379c0092c05204228e46 Mon Sep 17 00:00:00 2001 From: Andreas Zwinkau Date: Wed, 14 Jan 2015 21:16:53 +0100 Subject: [PATCH] no doubleNewline at end of file --- src/dfmt.d | 2 +- tests/frontpage.d.ref | 1 - tests/hello.d.ref | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/dfmt.d b/src/dfmt.d index 7b44ac0..c2e8f81 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -383,7 +383,7 @@ private: newline(); write("}"); depth--; - if (index < tokens.length && + if (index < tokens.length-1 && assumeSorted(astInformation.doubleNewlineLocations) .equalRange(tokens[index].index).length) { diff --git a/tests/frontpage.d.ref b/tests/frontpage.d.ref index 654056d..640ab33 100644 --- a/tests/frontpage.d.ref +++ b/tests/frontpage.d.ref @@ -12,4 +12,3 @@ void main() } writeln("Average line length: ", lines ? sumLength / lines:0); } - diff --git a/tests/hello.d.ref b/tests/hello.d.ref index 3894114..0beb9aa 100644 --- a/tests/hello.d.ref +++ b/tests/hello.d.ref @@ -4,4 +4,3 @@ void main() { writeln("Hello, world without explicit compilations!"); } -