|
#if (__cplusplus >= 202002L) |
This is in the backport of std::remove_cvref_t. MSVC defines __cplusplus as 199711L by default unless /Zc:__cplusplus is set. If MSVC support is required, consider adding || (defined(_MSVC_LANG) && _MSVC_LANG >= 202002L) to the condition.
@youyu3
mdspan/include/experimental/__p0009_bits/utility.hpp
Line 18 in 80fc772
This is in the backport of
std::remove_cvref_t. MSVC defines__cplusplusas199711Lby default unless/Zc:__cplusplusis set. If MSVC support is required, consider adding|| (defined(_MSVC_LANG) && _MSVC_LANG >= 202002L) to the condition.@youyu3