]> git.donarmstrong.com Git - rsem.git/blob - boost/type_traits/is_signed.hpp
bf7bbfdb7686c7ead861ecf0aae62d9f0e7c2acd
[rsem.git] / boost / type_traits / is_signed.hpp
1
2 //  (C) Copyright John Maddock 2005.  
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
10 #ifndef BOOST_TT_IS_SIGNED_HPP_INCLUDED
11 #define BOOST_TT_IS_SIGNED_HPP_INCLUDED
12
13 #include <boost/type_traits/is_integral.hpp>
14 #include <boost/type_traits/remove_cv.hpp>
15 #include <boost/type_traits/is_enum.hpp>
16 #include <boost/type_traits/detail/ice_or.hpp>
17
18 // should be the last #include
19 #include <boost/type_traits/detail/bool_trait_def.hpp>
20
21 namespace boost {
22
23 #if !defined( __CODEGEARC__ )
24
25 namespace detail{
26
27 #if !(defined(__EDG_VERSION__) && __EDG_VERSION__ <= 238)
28
29 template <class T>
30 struct is_signed_values
31 {
32    typedef typename remove_cv<T>::type no_cv_t;
33    BOOST_STATIC_CONSTANT(no_cv_t, minus_one = (static_cast<no_cv_t>(-1)));
34    BOOST_STATIC_CONSTANT(no_cv_t, zero = (static_cast<no_cv_t>(0)));
35 };
36
37 template <class T>
38 struct is_signed_helper
39 {
40    typedef typename remove_cv<T>::type no_cv_t;
41    BOOST_STATIC_CONSTANT(bool, value = (!(::boost::detail::is_signed_values<T>::minus_one  > boost::detail::is_signed_values<T>::zero)));
42 };
43
44 template <bool integral_type>
45 struct is_signed_select_helper
46 {
47    template <class T>
48    struct rebind
49    {
50       typedef is_signed_helper<T> type;
51    };
52 };
53
54 template <>
55 struct is_signed_select_helper<false>
56 {
57    template <class T>
58    struct rebind
59    {
60       typedef false_type type;
61    };
62 };
63
64 template <class T>
65 struct is_signed_imp
66 {
67    typedef is_signed_select_helper< 
68       ::boost::type_traits::ice_or<
69          ::boost::is_integral<T>::value,
70          ::boost::is_enum<T>::value>::value 
71    > selector;
72    typedef typename selector::template rebind<T> binder;
73    typedef typename binder::type type;
74 #if defined(BOOST_MSVC) && (BOOST_MSVC < 1300)
75    BOOST_STATIC_CONSTANT(bool, value = is_signed_imp<T>::type::value);
76 #else
77    BOOST_STATIC_CONSTANT(bool, value = type::value);
78 #endif
79 };
80
81 #else
82
83 template <class T> struct is_signed_imp : public false_type{};
84 template <> struct is_signed_imp<signed char> : public true_type{};
85 template <> struct is_signed_imp<const signed char> : public true_type{};
86 template <> struct is_signed_imp<volatile signed char> : public true_type{};
87 template <> struct is_signed_imp<const volatile signed char> : public true_type{};
88 template <> struct is_signed_imp<short> : public true_type{};
89 template <> struct is_signed_imp<const short> : public true_type{};
90 template <> struct is_signed_imp<volatile short> : public true_type{};
91 template <> struct is_signed_imp<const volatile short> : public true_type{};
92 template <> struct is_signed_imp<int> : public true_type{};
93 template <> struct is_signed_imp<const int> : public true_type{};
94 template <> struct is_signed_imp<volatile int> : public true_type{};
95 template <> struct is_signed_imp<const volatile int> : public true_type{};
96 template <> struct is_signed_imp<long> : public true_type{};
97 template <> struct is_signed_imp<const long> : public true_type{};
98 template <> struct is_signed_imp<volatile long> : public true_type{};
99 template <> struct is_signed_imp<const volatile long> : public true_type{};
100 #ifdef BOOST_HAS_LONG_LONG
101 template <> struct is_signed_imp<long long> : public true_type{};
102 template <> struct is_signed_imp<const long long> : public true_type{};
103 template <> struct is_signed_imp<volatile long long> : public true_type{};
104 template <> struct is_signed_imp<const volatile long long> : public true_type{};
105 #endif
106 #if defined(CHAR_MIN) && (CHAR_MIN != 0)
107 template <> struct is_signed_imp<char> : public true_type{};
108 template <> struct is_signed_imp<const char> : public true_type{};
109 template <> struct is_signed_imp<volatile char> : public true_type{};
110 template <> struct is_signed_imp<const volatile char> : public true_type{};
111 #endif
112 #if defined(WCHAR_MIN) && (WCHAR_MIN != 0)
113 template <> struct is_signed_imp<wchar_t> : public true_type{};
114 template <> struct is_signed_imp<const wchar_t> : public true_type{};
115 template <> struct is_signed_imp<volatile wchar_t> : public true_type{};
116 template <> struct is_signed_imp<const volatile wchar_t> : public true_type{};
117 #endif
118
119 #endif
120
121 }
122
123 #endif // !defined( __CODEGEARC__ )
124
125 #if defined( __CODEGEARC__ )
126 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_signed,T,__is_signed(T))
127 #else
128 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_signed,T,::boost::detail::is_signed_imp<T>::value)
129 #endif
130
131 } // namespace boost
132
133 #include <boost/type_traits/detail/bool_trait_undef.hpp>
134
135 #endif // BOOST_TT_IS_MEMBER_FUNCTION_POINTER_HPP_INCLUDED