Skip to content

Commit 6de3f1c

Browse files
Win10 baseline: Drop support for Win8.1 / Server 2012 R2 (#5510)
1 parent e2f43c5 commit 6de3f1c

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

stl/inc/yvals_core.h

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1974,18 +1974,12 @@ compiler option, or define _ALLOW_RTCc_IN_STL to suppress this error.
19741974
#endif // defined(MRTDLL) && !defined(_M_CEE_PURE)
19751975

19761976
#define _STL_WIN32_WINNT_VISTA 0x0600 // _WIN32_WINNT_VISTA from sdkddkver.h
1977-
#define _STL_WIN32_WINNT_WIN8 0x0602 // _WIN32_WINNT_WIN8 from sdkddkver.h
19781977
#define _STL_WIN32_WINNT_WIN10 0x0A00 // _WIN32_WINNT_WIN10 from sdkddkver.h
19791978

19801979
// Note that the STL DLL builds will set this to XP for ABI compatibility with VS2015 which supported XP.
19811980
#ifndef _STL_WIN32_WINNT
1982-
#if defined(_M_ARM64)
1983-
// The first ARM64 Windows was Windows 10
1981+
// The earliest Windows supported by this implementation is Windows 10
19841982
#define _STL_WIN32_WINNT _STL_WIN32_WINNT_WIN10
1985-
#else // ^^^ defined(_M_ARM64) / !defined(_M_ARM64) vvv
1986-
// The earliest Windows supported by this implementation is Windows 8
1987-
#define _STL_WIN32_WINNT _STL_WIN32_WINNT_WIN8
1988-
#endif // ^^^ !defined(_M_ARM64) ^^^
19891983
#endif // !defined(_STL_WIN32_WINNT)
19901984

19911985
#ifdef __cpp_noexcept_function_type

0 commit comments

Comments
 (0)