Increase workaround to < 1950, because VS2022 has reached _MSC_VER=1940. Refs #43.

This commit is contained in:
Peter Dimov
2024-05-17 21:44:21 +03:00
parent ff36c3aa1f
commit 78796d0e7d

View File

@ -1635,7 +1635,7 @@ public:
class Ud = typename std::decay<U>::type,
class E1 = typename std::enable_if< !std::is_same<Ud, variant>::value && !std::is_base_of<variant, Ud>::value && !detail::is_in_place_index<Ud>::value && !detail::is_in_place_type<Ud>::value >::type,
#if BOOST_WORKAROUND(BOOST_MSVC, < 1940)
#if BOOST_WORKAROUND(BOOST_MSVC, < 1950)
class V = mp11::mp_apply_q< mp11::mp_bind_front<detail::resolve_overload_type, U&&>, variant >,