You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ^ Supports MSVC prior to 15.7 without setting /Zc:__cplusplus to fix __cplusplus
37
37
// _MSVC_LANG works regardless. But without the switch, the compiler always reported 199711L: https://blogs.msdn.microsoft.com/vcblog/2018/04/09/msvc-now-correctly-reports-__cplusplus/
38
38
#if __has_include(<filesystem>) // Two stage __has_include needed for MSVC 2015 and per https://gcc.gnu.org/onlinedocs/cpp/_005f_005fhas_005finclude.html
@@ -46,12 +46,12 @@
46
46
// Note: This intentionally uses std::filesystem on any new Apple OS, like visionOS
47
47
// released after std::filesystem, where std::filesystem is always available.
48
48
// (All other __<platform>_VERSION_MIN_REQUIREDs will be undefined and thus 0.)
// ^ Supports MSVC prior to 15.7 without setting /Zc:__cplusplus to fix __cplusplus
39
39
// _MSVC_LANG works regardless. But without the switch, the compiler always reported 199711L: https://blogs.msdn.microsoft.com/vcblog/2018/04/09/msvc-now-correctly-reports-__cplusplus/
40
40
#if __has_include(<filesystem>) // Two stage __has_include needed for MSVC 2015 and per https://gcc.gnu.org/onlinedocs/cpp/_005f_005fhas_005finclude.html
@@ -48,12 +48,12 @@
48
48
// Note: This intentionally uses std::filesystem on any new Apple OS, like visionOS
49
49
// released after std::filesystem, where std::filesystem is always available.
50
50
// (All other __<platform>_VERSION_MIN_REQUIREDs will be undefined and thus 0.)
// ^ Supports MSVC prior to 15.7 without setting /Zc:__cplusplus to fix __cplusplus
36
36
// _MSVC_LANG works regardless. But without the switch, the compiler always reported 199711L: https://blogs.msdn.microsoft.com/vcblog/2018/04/09/msvc-now-correctly-reports-__cplusplus/
37
37
#if __has_include(<filesystem>) // Two stage __has_include needed for MSVC 2015 and per https://gcc.gnu.org/onlinedocs/cpp/_005f_005fhas_005finclude.html
@@ -45,12 +45,12 @@
45
45
// Note: This intentionally uses std::filesystem on any new Apple OS, like visionOS
46
46
// released after std::filesystem, where std::filesystem is always available.
47
47
// (All other __<platform>_VERSION_MIN_REQUIREDs will be undefined and thus 0.)
0 commit comments