From 5a20afef842daa0a76b1d3ed11440c96cab94745 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Mon, 26 May 2025 12:21:45 -0700 Subject: [PATCH] Bumped minimum required version of MSVC. --- include/bx/platform.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/bx/platform.h b/include/bx/platform.h index de4560b..f657893 100644 --- a/include/bx/platform.h +++ b/include/bx/platform.h @@ -469,10 +469,10 @@ static_assert(!BX_COMPILER_GCC || BX_COMPILER_GCC >= 110000, "\n\n" "\tMinimum supported GCC version is 11.0 (April 27, 2021).\n" "\t\n"); -// https://learn.microsoft.com/en-us/visualstudio/releases/2019/history -static_assert(!BX_COMPILER_MSVC || BX_COMPILER_MSVC >= 1927, "\n\n" +// https://learn.microsoft.com/en-us/cpp/overview/compiler-versions +static_assert(!BX_COMPILER_MSVC || BX_COMPILER_MSVC >= 1935, "\n\n" "\t** IMPORTANT! **\n\n" - "\tMinimum supported MSVC 19.27 / Visual Studio 2019 version 16.7 (August 5, 2020).\n" + "\tMinimum supported MSVC 19.35 / Visual Studio 2022 version 17.5 (February 21, 2023).\n" "\t\n"); static_assert(!BX_CPU_ENDIAN_BIG, "\n\n"