From e43a3a12a34da4a2e448c72f8d650dd2e8aae287 Mon Sep 17 00:00:00 2001 From: Mathias Lang Date: Mon, 26 Sep 2016 14:35:41 +0200 Subject: [PATCH] Remove last use of implicit string concatenation This feature will hopefully be deprecated soon. --- std/net/curl.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/net/curl.d b/std/net/curl.d index abd678b2a13..16da5f186fe 100644 --- a/std/net/curl.d +++ b/std/net/curl.d @@ -290,7 +290,7 @@ version(unittest) { return "HTTP/1.1 200 OK\r\n"~ "Content-Type: text/plain\r\n"~ - "Content-Length: "~msg.length.to!string~"\r\n" + "Content-Length: "~msg.length.to!string~"\r\n"~ "\r\n"~ msg; }