diff --git a/include/boost/detail/is_xxx.hpp b/include/boost/detail/is_xxx.hpp index 3f9a126..d54bf7b 100644 --- a/include/boost/detail/is_xxx.hpp +++ b/include/boost/detail/is_xxx.hpp @@ -5,13 +5,13 @@ # define BOOST_DETAIL_IS_XXX_DWA20051011_HPP # include -# include +# include # include # define BOOST_DETAIL_IS_XXX_DEF(name, qualified_name, nargs) \ template \ -struct is_##name : mpl::false_ \ +struct is_##name : boost::false_type \ { \ }; \ \ @@ -19,7 +19,7 @@ template < BOOST_PP_ENUM_PARAMS_Z(1, nargs, class T) > \ struct is_##name< \ qualified_name< BOOST_PP_ENUM_PARAMS_Z(1, nargs, T) > \ > \ - : mpl::true_ \ + : boost::true_type \ { \ };