avoiding errors on visual studio compilers

errors were due to the way MPL_ASSERT is defined for these compilers
This commit is contained in:
Bruno Dutra
2015-03-21 21:08:05 -03:00
parent f0f1680f3c
commit 07a5457dcd

View File

@@ -20,25 +20,25 @@
#include <boost/mpl/aux_/test.hpp> #include <boost/mpl/aux_/test.hpp>
#include <boost/preprocessor/cat.hpp>
#include <boost/preprocessor/inc.hpp> #include <boost/preprocessor/inc.hpp>
#include <boost/preprocessor/repeat_from_to.hpp> #include <boost/preprocessor/repeat_from_to.hpp>
#include <boost/preprocessor/enum_params.hpp> #include <boost/preprocessor/enum_params.hpp>
#include <boost/preprocessor/enum_shifted_params.hpp>
#include <boost/preprocessor/facilities/intercept.hpp> #include <boost/preprocessor/facilities/intercept.hpp>
#define TEST_N_ARY(unused1, N, unused2) \ #define TEST_N_ARY(unused1, N, unused2) \
struct BOOST_PP_CAT(_, BOOST_PP_CAT(N, _ary)) \ static_assert_< \
{ \
MPL_ASSERT(( \
apply< \ apply< \
and_<BOOST_PP_ENUM_SHIFTED_PARAMS(BOOST_PP_INC(N), _)>, \ and_<BOOST_PP_ENUM_PARAMS(N, _ BOOST_PP_INTERCEPT)>, \
BOOST_PP_ENUM_PARAMS(N, true_ BOOST_PP_INTERCEPT) \ BOOST_PP_ENUM_PARAMS(N, true_ BOOST_PP_INTERCEPT) \
> \ > \
)); \ >(); \
}; \
/**/ /**/
template<typename assertion>
void static_assert_(){
MPL_ASSERT((typename assertion::type));
}
MPL_TEST_CASE() MPL_TEST_CASE()
{ {
BOOST_PP_REPEAT_FROM_TO( BOOST_PP_REPEAT_FROM_TO(