diff --git a/include/boost/concept_check.hpp b/include/boost/concept_check.hpp index c8aef71..e4f06fb 100644 --- a/include/boost/concept_check.hpp +++ b/include/boost/concept_check.hpp @@ -418,7 +418,7 @@ namespace boost ~AdaptableGeneratorConcept() { - BOOST_MPL_ASSERT((is_convertible)); + BOOST_CONCEPT_ASSERT((ConvertibleConcept)); } }; @@ -431,8 +431,8 @@ namespace boost ~AdaptableUnaryFunctionConcept() { - BOOST_MPL_ASSERT((is_convertible)); - BOOST_MPL_ASSERT((is_convertible)); + BOOST_CONCEPT_ASSERT((ConvertibleConcept)); + BOOST_CONCEPT_ASSERT((ConvertibleConcept)); } }; @@ -451,9 +451,9 @@ namespace boost ~AdaptableBinaryFunctionConcept() { - BOOST_MPL_ASSERT((is_convertible)); - BOOST_MPL_ASSERT((is_convertible)); - BOOST_MPL_ASSERT((is_convertible)); + BOOST_CONCEPT_ASSERT((ConvertibleConcept)); + BOOST_CONCEPT_ASSERT((ConvertibleConcept)); + BOOST_CONCEPT_ASSERT((ConvertibleConcept)); } };