Use type traits bool type in reference_content

This commit is contained in:
Daniel James
2018-04-08 14:47:24 +01:00
parent 121cbef225
commit abfaa1443a

View File

@@ -15,7 +15,7 @@
#include "boost/config.hpp" #include "boost/config.hpp"
# include "boost/mpl/bool.hpp" # include "boost/type_traits/integral_constant.hpp"
# include "boost/type_traits/has_nothrow_copy.hpp" # include "boost/type_traits/has_nothrow_copy.hpp"
#include "boost/mpl/void.hpp" #include "boost/mpl/void.hpp"
@@ -110,7 +110,7 @@ template <typename T>
struct has_nothrow_copy< struct has_nothrow_copy<
::boost::detail::reference_content< T& > ::boost::detail::reference_content< T& >
> >
: mpl::true_ : boost::true_type
{ {
}; };