From 7503e963fd1f4cedd1efc0a993917a1f3fd5588f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Mon, 24 Jul 2017 12:31:36 +0200 Subject: [PATCH] Add /permissive- switch to MSVC MSVC2017 has a new compiler switch to become more conformant. See https://blogs.msdn.microsoft.com/vcblog/2016/11/16/permissive-switch/ On MSVC2015 (as used currently in our AppVeyor setup) this switch is safely ignored. This should help reduce the need to fix build errors only found on Travis et al. --- openrct2.common.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openrct2.common.props b/openrct2.common.props index bc8788600e..92f981ec0e 100644 --- a/openrct2.common.props +++ b/openrct2.common.props @@ -47,7 +47,7 @@ MultiThreaded true true - /utf-8 /std:c++latest + /utf-8 /std:c++latest /permissive- imm32.lib;version.lib;winmm.lib;crypt32.lib;%(AdditionalDependencies)