source: NonGTP/Boost/boost/type_traits/remove_volatile.hpp @ 857

Revision 857, 2.1 KB checked in by igarcia, 18 years ago (diff)
Line 
1
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
11#ifndef BOOST_TT_REMOVE_VOLATILE_HPP_INCLUDED
12#define BOOST_TT_REMOVE_VOLATILE_HPP_INCLUDED
13
14#include "boost/type_traits/is_const.hpp"
15#include "boost/type_traits/broken_compiler_spec.hpp"
16#include "boost/type_traits/detail/cv_traits_impl.hpp"
17#include "boost/config.hpp"
18
19#include <cstddef>
20
21// should be the last #include
22#include "boost/type_traits/detail/type_trait_def.hpp"
23
24namespace boost {
25
26#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
27
28namespace detail {
29
30template <typename T, bool is_const>
31struct remove_volatile_helper
32{
33    typedef T type;
34};
35
36template <typename T>
37struct remove_volatile_helper<T,true>
38{
39    typedef T const type;
40};
41
42template <typename T>
43struct remove_volatile_impl
44{
45    typedef typename remove_volatile_helper<
46          typename cv_traits_imp<T*>::unqualified_type
47        , ::boost::is_const<T>::value
48        >::type type;
49};
50
51} // namespace detail
52
53// * convert a type T to a non-volatile type - remove_volatile<T>
54
55BOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_volatile,T,typename detail::remove_volatile_impl<T>::type)
56BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_volatile,T&,T&)
57#if !defined(BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS)
58BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_volatile,T volatile[N],T type[N])
59BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_volatile,T const volatile[N],T const type[N])
60#endif
61
62#else
63
64BOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_volatile,T,typename detail::remove_volatile_impl<T>::type)
65
66#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
67
68} // namespace boost
69
70#include "boost/type_traits/detail/type_trait_undef.hpp"
71
72#endif // BOOST_TT_REMOVE_VOLATILE_HPP_INCLUDED
Note: See TracBrowser for help on using the repository browser.