Blame view

3rdparty/boost_1_81_0/boost/atomic/detail/classify.hpp 2.35 KB
63e88f80   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
  /*
   * Distributed under the Boost Software License, Version 1.0.
   * (See accompanying file LICENSE_1_0.txt or copy at
   * http://www.boost.org/LICENSE_1_0.txt)
   *
   * Copyright (c) 2020-2021 Andrey Semashev
   */
  /*!
   * \file   atomic/detail/classify.hpp
   *
   * This header contains type traits for type classification.
   */
  
  #ifndef BOOST_ATOMIC_DETAIL_CLASSIFY_HPP_INCLUDED_
  #define BOOST_ATOMIC_DETAIL_CLASSIFY_HPP_INCLUDED_
  
  #include <boost/atomic/detail/config.hpp>
  #include <boost/atomic/detail/type_traits/is_enum.hpp>
  #include <boost/atomic/detail/type_traits/is_integral.hpp>
  #include <boost/atomic/detail/type_traits/is_function.hpp>
  #include <boost/atomic/detail/type_traits/is_floating_point.hpp>
  #include <boost/atomic/detail/header.hpp>
  
  #ifdef BOOST_HAS_PRAGMA_ONCE
  #pragma once
  #endif
  
  namespace boost {
  namespace atomics {
  namespace detail {
  
  template< typename T, bool IsFunction = atomics::detail::is_function< T >::value >
  struct classify_pointer
  {
      typedef void* type;
  };
  
  template< typename T >
  struct classify_pointer< T, true >
  {
      typedef void type;
  };
  
  template<
      typename T,
      bool IsInt = atomics::detail::is_integral< T >::value,
      bool IsFloat = atomics::detail::is_floating_point< T >::value,
      bool IsEnum = atomics::detail::is_enum< T >::value
  >
  struct classify
  {
      typedef void type;
  };
  
  template< typename T >
  struct classify< T, true, false, false > { typedef int type; };
  
  #if !defined(BOOST_ATOMIC_NO_FLOATING_POINT)
  template< typename T >
  struct classify< T, false, true, false > { typedef float type; };
  #endif
  
  template< typename T >
  struct classify< T, false, false, true > { typedef const int type; };
  
  template< typename T >
  struct classify< T*, false, false, false > { typedef typename classify_pointer< T >::type type; };
  
  template< >
  struct classify< void*, false, false, false > { typedef void type; };
  
  template< >
  struct classify< const void*, false, false, false > { typedef void type; };
  
  template< >
  struct classify< volatile void*, false, false, false > { typedef void type; };
  
  template< >
  struct classify< const volatile void*, false, false, false > { typedef void type; };
  
  template< typename T, typename U >
  struct classify< T U::*, false, false, false > { typedef void type; };
  
  } // namespace detail
  } // namespace atomics
  } // namespace boost
  
  #include <boost/atomic/detail/footer.hpp>
  
  #endif // BOOST_ATOMIC_DETAIL_CLASSIFY_HPP_INCLUDED_