From ec9d43e7e923ffbed9c5d4f6ec862f36e8e12f62 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 19 May 2017 01:00:56 +0300 Subject: [PATCH] Try to fix g++ 4.7 --- include/boost/mp11/algorithm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/mp11/algorithm.hpp b/include/boost/mp11/algorithm.hpp index a91aeec..cd502f6 100644 --- a/include/boost/mp11/algorithm.hpp +++ b/include/boost/mp11/algorithm.hpp @@ -88,7 +88,7 @@ template struct mp_same_size_2: mp_defer {}; } // namespace detail -#if BOOST_WORKAROUND( BOOST_MSVC, == 1900 ) +#if BOOST_WORKAROUND( BOOST_MSVC, == 1900 ) || BOOST_WORKAROUND( BOOST_GCC, < 40800 ) template class F, class... L> using mp_transform = typename mp_if::type, detail::mp_transform_impl>::type;