blob: b9ee62371d4bc6e506ff92dd9ec840e99bc16ec8 [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001
2// (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
3// Use, modification and distribution are subject to the Boost Software License,
4// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt).
6//
7// See http://www.boost.org/libs/type_traits for most recent version including documentation.
8
9#ifndef BOOST_TT_REMOVE_BOUNDS_HPP_INCLUDED
10#define BOOST_TT_REMOVE_BOUNDS_HPP_INCLUDED
11
12#include <boost/config.hpp>
13#include <cstddef>
14#include <boost/detail/workaround.hpp>
15
16#if BOOST_WORKAROUND(BOOST_MSVC,<=1300)
17#include <boost/type_traits/msvc/remove_bounds.hpp>
18#endif
19
20// should be the last #include
21#include <boost/type_traits/detail/type_trait_def.hpp>
22
23#if !BOOST_WORKAROUND(BOOST_MSVC,<=1300)
24
25namespace ndnboost {
26
27BOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_bounds,T,T)
28
29#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS)
30BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_bounds,T[N],T type)
31BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_bounds,T const[N],T const type)
32BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_bounds,T volatile[N],T volatile type)
33BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_bounds,T const volatile[N],T const volatile type)
34#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x610)) && !defined(__IBMCPP__) && !BOOST_WORKAROUND(__DMC__, BOOST_TESTED_AT(0x840))
35BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_bounds,T[],T)
36BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_bounds,T const[],T const)
37BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_bounds,T volatile[],T volatile)
38BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_bounds,T const volatile[],T const volatile)
39#endif
40#endif
41
42} // namespace ndnboost
43
44#endif
45
46#include <boost/type_traits/detail/type_trait_undef.hpp>
47
48#endif // BOOST_TT_REMOVE_BOUNDS_HPP_INCLUDED