/* Copyright 2019 Glen Joseph Fernandes (glenjofe@gmail.com) Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_TT_COPY_CV_REF_HPP_INCLUDED #define BOOST_TT_COPY_CV_REF_HPP_INCLUDED #include #include #include namespace boost { template struct copy_cv_ref { typedef typename copy_reference::type >::type, U>::type type; }; #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) template using copy_cv_ref_t = typename copy_cv_ref::type; #endif } /* boost */ #endif