blob: 5a3161309b920d165fc2d5061522317b91983ccf [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
2// (C) Copyright Dave Abrahams, Steve Cleary, Beman Dawes, Howard
3// Hinnant & John Maddock 2000.
4// Use, modification and distribution are subject to the Boost Software License,
5// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt).
7//
8// See http://www.boost.org/libs/type_traits for most recent version including documentation.
9
10
Jeff Thompson3d613fd2013-10-15 15:39:04 -070011#ifndef NDNBOOST_TT_REMOVE_CONST_HPP_INCLUDED
12#define NDNBOOST_TT_REMOVE_CONST_HPP_INCLUDED
Jeff Thompsona28eed82013-08-22 16:21:10 -070013
14#include <ndnboost/type_traits/is_volatile.hpp>
15#include <ndnboost/type_traits/broken_compiler_spec.hpp>
16#include <ndnboost/type_traits/detail/cv_traits_impl.hpp>
17#include <ndnboost/config.hpp>
18#include <ndnboost/detail/workaround.hpp>
19
20#include <cstddef>
21
Jeff Thompson3d613fd2013-10-15 15:39:04 -070022#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC,<=1300)
Jeff Thompsona28eed82013-08-22 16:21:10 -070023#include <ndnboost/type_traits/msvc/remove_const.hpp>
24#endif
25
26// should be the last #include
27#include <ndnboost/type_traits/detail/type_trait_def.hpp>
28
29namespace ndnboost {
30
Jeff Thompson3d613fd2013-10-15 15:39:04 -070031#ifndef NDNBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
Jeff Thompsona28eed82013-08-22 16:21:10 -070032
33namespace detail {
34
35template <typename T, bool is_vol>
36struct remove_const_helper
37{
38 typedef T type;
39};
40
41template <typename T>
42struct remove_const_helper<T, true>
43{
44 typedef T volatile type;
45};
46
47
48template <typename T>
49struct remove_const_impl
50{
51 typedef typename remove_const_helper<
52 typename cv_traits_imp<T*>::unqualified_type
53 , ::ndnboost::is_volatile<T>::value
54 >::type type;
55};
56
Jeff Thompson3d613fd2013-10-15 15:39:04 -070057#ifndef NDNBOOST_NO_CXX11_RVALUE_REFERENCES
Jeff Thompsona28eed82013-08-22 16:21:10 -070058//
59// We can't filter out rvalue_references at the same level as
60// references or we get ambiguities from msvc:
61//
62template <typename T>
63struct remove_const_impl<T&&>
64{
65 typedef T&& type;
66};
67#endif
68
69} // namespace detail
70
71// * convert a type T to non-const type - remove_const<T>
72
Jeff Thompson3d613fd2013-10-15 15:39:04 -070073NDNBOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_const,T,typename ndnboost::detail::remove_const_impl<T>::type)
74NDNBOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_const,T&,T&)
75#if !defined(NDNBOOST_NO_ARRAY_TYPE_SPECIALIZATIONS)
76NDNBOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_const,T const[N],T type[N])
77NDNBOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_const,T const volatile[N],T volatile type[N])
Jeff Thompsona28eed82013-08-22 16:21:10 -070078#endif
79
Jeff Thompson3d613fd2013-10-15 15:39:04 -070080#elif !NDNBOOST_WORKAROUND(NDNBOOST_MSVC,<=1300)
Jeff Thompsona28eed82013-08-22 16:21:10 -070081
Jeff Thompson3d613fd2013-10-15 15:39:04 -070082NDNBOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_const,T,typename ndnboost::detail::remove_const_impl<T>::type)
Jeff Thompsona28eed82013-08-22 16:21:10 -070083
Jeff Thompson3d613fd2013-10-15 15:39:04 -070084#endif // NDNBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
Jeff Thompsona28eed82013-08-22 16:21:10 -070085
86} // namespace ndnboost
87
88#include <ndnboost/type_traits/detail/type_trait_undef.hpp>
89
Jeff Thompson3d613fd2013-10-15 15:39:04 -070090#endif // NDNBOOST_TT_REMOVE_CONST_HPP_INCLUDED