[/ Copyright 2007 John Maddock. 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). ] [section:add_cv add_cv] template struct add_cv { typedef __below type; }; template using add_cv_t = typename add_cv::type; // C++11 and above __type The same type as `T const volatile` for all `T`. __std_ref 3.9.3. __header ` #include ` or ` #include ` [table Examples [ [Expression] [Result Type]] [[`add_cv::type`][`int const volatile`]] [[`add_cv::type`] [`int&`]] [[`add_cv::type`] [`int* const volatile`]] [[`add_cv::type`] [`int const volatile`]] ] [all_compilers] [endsect]