blob: d5cb86a21861878da6d549bbde4aa478c17911b8 [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -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_CV_HPP_INCLUDED
12#define NDNBOOST_TT_REMOVE_CV_HPP_INCLUDED
Jeff Thompsonf7d49942013-08-01 16:47:40 -070013
Jeff Thompson2277ce52013-08-01 17:34:11 -070014#include <ndnboost/type_traits/broken_compiler_spec.hpp>
15#include <ndnboost/type_traits/detail/cv_traits_impl.hpp>
16#include <ndnboost/config.hpp>
17#include <ndnboost/detail/workaround.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070018
19#include <cstddef>
20
Jeff Thompson3d613fd2013-10-15 15:39:04 -070021#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC,<=1300)
Jeff Thompson2277ce52013-08-01 17:34:11 -070022#include <ndnboost/type_traits/msvc/remove_cv.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070023#endif
24
25// should be the last #include
Jeff Thompson2277ce52013-08-01 17:34:11 -070026#include <ndnboost/type_traits/detail/type_trait_def.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070027
28namespace ndnboost {
29
Jeff Thompson3d613fd2013-10-15 15:39:04 -070030#ifndef NDNBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
Jeff Thompsonf7d49942013-08-01 16:47:40 -070031
32namespace detail{
33
34template <class T>
35struct rvalue_ref_filter_rem_cv
36{
37 typedef typename ndnboost::detail::cv_traits_imp<T*>::unqualified_type type;
38};
39
Jeff Thompson3d613fd2013-10-15 15:39:04 -070040#ifndef NDNBOOST_NO_CXX11_RVALUE_REFERENCES
Jeff Thompsonf7d49942013-08-01 16:47:40 -070041//
42// We can't filter out rvalue_references at the same level as
43// references or we get ambiguities from msvc:
44//
45template <class T>
46struct rvalue_ref_filter_rem_cv<T&&>
47{
48 typedef T&& type;
49};
50#endif
51
52}
53
54
55// convert a type T to a non-cv-qualified type - remove_cv<T>
Jeff Thompson3d613fd2013-10-15 15:39:04 -070056NDNBOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_cv,T,typename ndnboost::detail::rvalue_ref_filter_rem_cv<T>::type)
57NDNBOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_cv,T&,T&)
58#if !defined(NDNBOOST_NO_ARRAY_TYPE_SPECIALIZATIONS)
59NDNBOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_cv,T const[N],T type[N])
60NDNBOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_cv,T volatile[N],T type[N])
61NDNBOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_cv,T const volatile[N],T type[N])
Jeff Thompsonf7d49942013-08-01 16:47:40 -070062#endif
63
Jeff Thompson3d613fd2013-10-15 15:39:04 -070064#elif !NDNBOOST_WORKAROUND(NDNBOOST_MSVC,<=1300)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070065
66namespace detail {
67template <typename T>
68struct remove_cv_impl
69{
70 typedef typename remove_volatile_impl<
71 typename remove_const_impl<T>::type
72 >::type type;
73};
74}
75
Jeff Thompson3d613fd2013-10-15 15:39:04 -070076NDNBOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_cv,T,typename ndnboost::detail::remove_cv_impl<T>::type)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070077
Jeff Thompson3d613fd2013-10-15 15:39:04 -070078#endif // NDNBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
Jeff Thompsonf7d49942013-08-01 16:47:40 -070079
80} // namespace ndnboost
81
Jeff Thompson2277ce52013-08-01 17:34:11 -070082#include <ndnboost/type_traits/detail/type_trait_undef.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070083
Jeff Thompson3d613fd2013-10-15 15:39:04 -070084#endif // NDNBOOST_TT_REMOVE_CV_HPP_INCLUDED