From 37a22db254301ac529f71b5082ad6db4b50dd56f Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 21 Feb 2019 23:18:54 +0200 Subject: [PATCH] Try msvc workaround for clang 3.8 too --- include/boost/variant2/variant.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/variant2/variant.hpp b/include/boost/variant2/variant.hpp index 8cb7ad8..e8bfd5f 100644 --- a/include/boost/variant2/variant.hpp +++ b/include/boost/variant2/variant.hpp @@ -1594,7 +1594,7 @@ template using front_if_same = mp11::mp_if using var_alt = variant_alternative_t; -#if BOOST_WORKAROUND( BOOST_MSVC, < 1920 ) +#if BOOST_WORKAROUND( BOOST_MSVC, < 1920 ) || ( defined(__clang__) && __clang_major__ == 3 && __clang_minor__ == 8 ) template struct apply_cv_ref_impl {