From d15dba11cad9446d7e39229a4ae5713e3048352e Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 11 Oct 2023 20:23:12 +0300 Subject: [PATCH] Use in decltype.hpp --- include/boost/typeof/decltype.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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