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