summaryrefslogtreecommitdiff
path: root/boost/detail/is_xxx.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/detail/is_xxx.hpp')
-rw-r--r--boost/detail/is_xxx.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/detail/is_xxx.hpp b/boost/detail/is_xxx.hpp
index 3f9a1265ee..d54bf7b88c 100644
--- a/boost/detail/is_xxx.hpp
+++ b/boost/detail/is_xxx.hpp
@@ -5,13 +5,13 @@
# define BOOST_DETAIL_IS_XXX_DWA20051011_HPP
# include <boost/config.hpp>
-# include <boost/mpl/bool.hpp>
+# include <boost/type_traits/integral_constant.hpp>
# include <boost/preprocessor/enum_params.hpp>
# define BOOST_DETAIL_IS_XXX_DEF(name, qualified_name, nargs) \
template <class T> \
-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 \
{ \
};