From 1f1459bd520fbbec75ed768143aa35894cc5bd49 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Thu, 3 Nov 2016 16:22:49 +0300 Subject: [PATCH] fix string concatenation warnings --- src/dlangui/platforms/console/consoleapp.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dlangui/platforms/console/consoleapp.d b/src/dlangui/platforms/console/consoleapp.d index af55403c..e014ec28 100644 --- a/src/dlangui/platforms/console/consoleapp.d +++ b/src/dlangui/platforms/console/consoleapp.d @@ -354,10 +354,10 @@ class ConsoleDrawBuf : DrawBuf { static immutable dstring SPACE_STRING = " " - " " - " " - " " - " "; + ~ " " + ~ " " + ~ " " + ~ " "; /// fill rectangle with solid color (clipping is applied) override void fillRect(Rect rc, uint color) {