From 127d24539d332bc4365771767edea2fee2383dca Mon Sep 17 00:00:00 2001 From: Mathias Lang Date: Mon, 26 Sep 2016 14:33:55 +0200 Subject: [PATCH] Remove use of implicit string concatenation This feature will hopefully be deprecated soon. --- src/core/sys/windows/errorrep.d | 2 +- src/core/sys/windows/lmmsg.d | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/sys/windows/errorrep.d b/src/core/sys/windows/errorrep.d index 62782961b3..b44d7034b3 100644 --- a/src/core/sys/windows/errorrep.d +++ b/src/core/sys/windows/errorrep.d @@ -16,7 +16,7 @@ private import core.sys.windows.w32api, core.sys.windows.windef; static assert (_WIN32_WINNT >= 0x501, "core.sys.windows.errorrep is available only if version WindowsXP, Windows2003 " - "or WindowsVista is set"); + ~ "or WindowsVista is set"); enum EFaultRepRetVal { frrvOk, diff --git a/src/core/sys/windows/lmmsg.d b/src/core/sys/windows/lmmsg.d index 7dfcde737a..e636df7e85 100644 --- a/src/core/sys/windows/lmmsg.d +++ b/src/core/sys/windows/lmmsg.d @@ -14,7 +14,7 @@ private import core.sys.windows.lmcons, core.sys.windows.windef, core.sys.window static assert (_WIN32_WINNT >= 0x501, "core.sys.windows.lmmsg is available only if version WindowsXP, Windows2003 " - "or WindowsVista is set"); + ~ "or WindowsVista is set"); enum MSGNAME_NOT_FORWARDED = 0; enum MSGNAME_FORWARDED_TO = 4;