From: <sv...@op...> - 2025-03-15 12:33:55
|
Author: manx Date: Sat Mar 15 13:33:26 2025 New Revision: 23033 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=23033 Log: Merged revision(s) 23032 from trunk/OpenMPT: [Fix] mpt/base/detect_quirks.hpp: Also apply MPT_LIBCXX_QUIRK_CHRONO_TZ_MEMLEAK for VS2022.13. 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 Sat Mar 15 13:33:06 2025 (r23032) +++ branches/OpenMPT-1.31/src/mpt/base/detect_quirks.hpp Sat Mar 15 13:33:26 2025 (r23033) @@ -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, 9) || !MPT_COMPILER_MSVC) +#if MPT_LIBCXX_MS && (MPT_MSVC_BEFORE(2022, 14) || !MPT_COMPILER_MSVC) // Causes massive memory leaks. // See // <https://developercommunity.visualstudio.com/t/stdchronoget-tzdb-list-memory-leak/1644641> |