diff --git a/test/mp_defer.cpp b/test/mp_defer.cpp index 2178493..75f3128 100644 --- a/test/mp_defer.cpp +++ b/test/mp_defer.cpp @@ -10,8 +10,6 @@ #include #include #include -#include -#include #include using boost::mp11::mp_identity; @@ -25,15 +23,7 @@ template struct has_type using type = decltype( f(0) ); -#if BOOST_WORKAROUND( BOOST_GCC, < 40800 ) - - static constexpr auto value = type::value; - -#else - - static const auto value = type::value; - -#endif + static const bool value = type::value; }; using boost::mp11::mp_defer;