summaryrefslogtreecommitdiff
path: root/boost/convert/detail/has_member.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/convert/detail/has_member.hpp')
-rw-r--r--boost/convert/detail/has_member.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/boost/convert/detail/has_member.hpp b/boost/convert/detail/has_member.hpp
index 68e53807a9..2cd617f7b0 100644
--- a/boost/convert/detail/has_member.hpp
+++ b/boost/convert/detail/has_member.hpp
@@ -5,7 +5,6 @@
#ifndef BOOST_CONVERT_HAS_MEMBER_HPP
#define BOOST_CONVERT_HAS_MEMBER_HPP
-#include <boost/type_traits/remove_const.hpp>
#include <boost/type_traits/detail/yes_no_type.hpp>
// This macro allows to check if a type has a member named "__member_name__"...
@@ -41,7 +40,7 @@
template <typename __boost_has_member_T__> /*C4*/ \
class __trait_name__ \
{ \
- typedef typename ::boost::remove_const<__boost_has_member_T__>::type check_type; \
+ typedef typename boost::remove_const<__boost_has_member_T__>::type check_type; \
typedef ::boost::type_traits::yes_type yes_type; \
typedef ::boost::type_traits:: no_type no_type; \
\