From: <sv...@op...> - 2025-05-25 11:16:18
|
Author: manx Date: Sun May 25 13:15:40 2025 New Revision: 23186 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=23186 Log: Merged revision(s) 23182 from trunk/OpenMPT: [Fix] mpt/base/detect_quirks.hpp: Also apply MPT_LIBCXX_QUIRK_CHRONO_TZ_MEMLEAK for VS2022.14. It's still not fixed. ........ Modified: branches/OpenMPT-1.31/ (props changed) branches/OpenMPT-1.31/src/mpt/base/detect_quirks.hpp Modified: branches/OpenMPT-1.31/src/mpt/base/detect_quirks.hpp ============================================================================== --- branches/OpenMPT-1.31/src/mpt/base/detect_quirks.hpp Sun May 25 13:15:00 2025 (r23185) +++ branches/OpenMPT-1.31/src/mpt/base/detect_quirks.hpp Sun May 25 13:15:40 2025 (r23186) @@ -276,7 +276,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> |