From 160d047434918d3a80dd3cac929d0396166a9c2a Mon Sep 17 00:00:00 2001 From: MiroKaku <50670906+MiroKaku@users.noreply.github.com> Date: Mon, 15 Apr 2024 17:37:43 +0800 Subject: [PATCH] fix: MSVC 1939 --- src/crt/stl/xnotify.cpp | 2 +- src/crt/stl/xtime.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crt/stl/xnotify.cpp b/src/crt/stl/xnotify.cpp index 9c832ab..ca8d293 100644 --- a/src/crt/stl/xnotify.cpp +++ b/src/crt/stl/xnotify.cpp @@ -8,7 +8,7 @@ //#include -#if _MSC_VER < 1936 // 17.6 +#if _MSC_VER < 1939 // 17.9 #define noexcept #endif diff --git a/src/crt/stl/xtime.cpp b/src/crt/stl/xtime.cpp index 8c9f3ee..920426c 100644 --- a/src/crt/stl/xtime.cpp +++ b/src/crt/stl/xtime.cpp @@ -8,7 +8,7 @@ // #include "awint.hpp" -#if _MSC_VER < 1936 // 17.6 +#if _MSC_VER < 1939 // 17.9 #define noexcept #endif