blob: 356af792cf6b990f8dd938b79a0b4eaff826180c [file] [log] [blame]
Brian Silverman4a2409e2018-08-04 23:24:02 -07001[/
2 Copyright 2007 John Maddock.
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or copy at
5 http://www.boost.org/LICENSE_1_0.txt).
6]
7
8[section:remove_const remove_const]
9
10 template <class T>
11 struct remove_const
12 {
13 typedef __below type;
14 };
15
16 template <class T> using remove_const_t = typename remove_const<T>::type; // C++11 and above
17
18__type The same type as `T`, but with any /top level/ const-qualifier removed.
19
20__std_ref 3.9.3.
21
22[all_compilers]
23
24__header ` #include <boost/type_traits/remove_const.hpp>` or ` #include <boost/type_traits.hpp>`
25
26[table Examples
27
28[ [Expression] [Result Type]]
29
30[[`remove_const<int>::type`][`int`]]
31
32[[`remove_const<int const>::type`] [`int`]]
33
34[[`remove_const<int const volatile>::type`] [`int volatile`]]
35
36[[`remove_const<int const&>::type`] [`int const&`]]
37
38[[`remove_const<int const*>::type`] [`int const*`]]
39
40]
41
42[endsect]
43