From: <sv...@op...> - 2024-08-07 12:39:16
|
Author: manx Date: Wed Aug 7 14:39:04 2024 New Revision: 21347 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21347 Log: [Fix] mpt/base/detect_compiler.hpp: Fix MSVC C++ version detection typo. Broken since rr21284. Modified: trunk/OpenMPT/src/mpt/base/detect_compiler.hpp Modified: trunk/OpenMPT/src/mpt/base/detect_compiler.hpp ============================================================================== --- trunk/OpenMPT/src/mpt/base/detect_compiler.hpp Wed Aug 7 10:39:22 2024 (r21346) +++ trunk/OpenMPT/src/mpt/base/detect_compiler.hpp Wed Aug 7 14:39:04 2024 (r21347) @@ -190,7 +190,7 @@ #elif MPT_COMPILER_MSVC -#if MPT_MSVC_AT_LEAST(2025, 3) +#if MPT_MSVC_AT_LEAST(2015, 3) #if (_MSVC_LANG >= 202302) #define MPT_CXX 23 #elif (_MSVC_LANG >= 202002) |