diff --git a/include/boost/typeof/decltype.hpp b/include/boost/typeof/decltype.hpp index 7e990a8..fffa710 100644 --- a/include/boost/typeof/decltype.hpp +++ b/include/boost/typeof/decltype.hpp @@ -6,12 +6,11 @@ #ifndef BOOST_TYPEOF_DECLTYPE_HPP_INCLUDED # define BOOST_TYPEOF_DECLTYPE_HPP_INCLUDED -#include -#include +#include namespace boost { namespace type_of { template - using remove_cv_ref_t = typename remove_cv::type>::type; + using remove_cv_ref_t = typename std::remove_cv::type>::type; }} #define BOOST_TYPEOF(expr) boost::type_of::remove_cv_ref_t