Path: blob/develop/build/pkgs/boost_cropped/patches/integral_wrapper.patch
4086 views
diff --git a/boost/mpl/aux_/integral_wrapper.hpp b/boost/mpl/aux_/integral_wrapper.hpp1index 6bc05f7..4f3f696 1006442--- a/boost/mpl/aux_/integral_wrapper.hpp3+++ b/boost/mpl/aux_/integral_wrapper.hpp4@@ -56,7 +56,7 @@ struct AUX_WRAPPER_NAME5// have to #ifdef here: some compilers don't like the 'N + 1' form (MSVC),6// while some other don't like 'value + 1' (Borland), and some don't like7// either8-#if BOOST_WORKAROUND(__EDG_VERSION__, <= 243)9+#if BOOST_WORKAROUND(__EDG_VERSION__, <= 243) || __clang_major__ >= 1610private:11BOOST_STATIC_CONSTANT(AUX_WRAPPER_VALUE_TYPE, next_value = BOOST_MPL_AUX_STATIC_CAST(AUX_WRAPPER_VALUE_TYPE, (N + 1)));12BOOST_STATIC_CONSTANT(AUX_WRAPPER_VALUE_TYPE, prior_value = BOOST_MPL_AUX_STATIC_CAST(AUX_WRAPPER_VALUE_TYPE, (N - 1)));131415