From: <sv...@op...> - 2025-05-25 11:14:07
|
Author: manx Date: Sun May 25 13:13:25 2025 New Revision: 23182 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=23182 Log: [Fix] mpt/base/detect_quirks.hpp: Also apply MPT_LIBCXX_QUIRK_CHRONO_TZ_MEMLEAK for VS2022.14. It's still not fixed. Modified: trunk/OpenMPT/src/mpt/base/detect_quirks.hpp Modified: trunk/OpenMPT/src/mpt/base/detect_quirks.hpp ============================================================================== --- trunk/OpenMPT/src/mpt/base/detect_quirks.hpp Sun May 25 13:12:16 2025 (r23181) +++ trunk/OpenMPT/src/mpt/base/detect_quirks.hpp Sun May 25 13:13:25 2025 (r23182) @@ -333,7 +333,7 @@ #elif MPT_LIBCXX_GNU #define MPT_LIBCXX_QUIRK_NO_CHRONO_DATE_PARSE #endif -#if MPT_LIBCXX_MS && (MPT_MSVC_BEFORE(2022, 14) || !MPT_COMPILER_MSVC) +#if MPT_LIBCXX_MS && (MPT_MSVC_BEFORE(2022, 15) || !MPT_COMPILER_MSVC) // Causes massive memory leaks. // See // <https://developercommunity.visualstudio.com/t/stdchronoget-tzdb-list-memory-leak/1644641> |