From 121cbef225f896a2cdeb53b2428dbe597242434f Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 8 Apr 2018 14:34:37 +0100 Subject: [PATCH] Use true_type/false_type from type traits in is_xxx.hpp --- include/boost/detail/is_xxx.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 \ { \ };