Try msvc workaround for clang 3.8 too

This commit is contained in:
Peter Dimov
2019-02-21 23:18:54 +02:00
parent c1287f9e95
commit 37a22db254

View File

@ -1594,7 +1594,7 @@ template<class L> using front_if_same = mp11::mp_if<mp11::mp_apply<mp11::mp_same
template<class N, class V> using var_alt = variant_alternative_t<N::value, V>;
#if BOOST_WORKAROUND( BOOST_MSVC, < 1920 )
#if BOOST_WORKAROUND( BOOST_MSVC, < 1920 ) || ( defined(__clang__) && __clang_major__ == 3 && __clang_minor__ == 8 )
template<class V> struct apply_cv_ref_impl
{