]> git.lyx.org Git - lyx.git/blob - boost/boost/type_traits/remove_bounds.hpp
Bug: 935
[lyx.git] / boost / boost / type_traits / remove_bounds.hpp
1
2 // (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
3 // Permission to copy, use, modify, sell and distribute this software is 
4 // granted provided this copyright notice appears in all copies. This software 
5 // is provided "as is" without express or implied warranty, and with no claim 
6 // as to its suitability for any purpose.
7 //
8 // See http://www.boost.org for most recent version including documentation.
9
10 #ifndef BOOST_TT_REMOVE_BOUNDS_HPP_INCLUDED
11 #define BOOST_TT_REMOVE_BOUNDS_HPP_INCLUDED
12
13 #include "boost/config.hpp"
14 #include <cstddef>
15
16 // should be the last #include
17 #include "boost/type_traits/detail/type_trait_def.hpp"
18
19 namespace boost {
20
21 BOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_bounds,T,T)
22
23 #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
24 BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_bounds,T[N],T type)
25 BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_bounds,T const[N],T const type)
26 BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_bounds,T volatile[N],T volatile type)
27 BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_bounds,T const volatile[N],T const volatile type)
28 #endif
29
30 } // namespace boost
31
32 #include "boost/type_traits/detail/type_trait_undef.hpp"
33
34 #endif // BOOST_TT_REMOVE_BOUNDS_HPP_INCLUDED