decay.hpp
Go to the documentation of this file.
1 // (C) Copyright John Maddock & Thorsten Ottosen 2005.
2 // Use, modification and distribution are subject to the Boost Software License,
3 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt).
5 //
6 // See http://www.boost.org/libs/type_traits for most recent version including documentation.
7 
8 
9 #ifndef BOOST_TT_DECAY_HPP_INCLUDED
10 #define BOOST_TT_DECAY_HPP_INCLUDED
11 
18 
19 namespace boost
20 {
21 
22  namespace detail
23  {
24 
25  template <class T, bool Array, bool Function> struct decay_imp { typedef typename remove_cv<T>::type type; };
26  template <class T> struct decay_imp<T, true, false> { typedef typename remove_bounds<T>::type* type; };
27  template <class T> struct decay_imp<T, false, true> { typedef T* type; };
28 
29  }
30 
31  template< class T >
32  struct decay
33  {
34  private:
35  typedef typename remove_reference<T>::type Ty;
36  public:
38  };
39 
40 #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
41 
42  template <class T> using decay_t = typename decay<T>::type;
43 
44 #endif
45 
46 } // namespace boost
47 
48 
49 #endif // BOOST_TT_DECAY_HPP_INCLUDED
boost::detail::remove_rvalue_ref< T >::type type
boost::detail::decay_imp< Ty, boost::is_array< Ty >::value, boost::is_function< Ty >::value >::type type
Definition: decay.hpp:37
BOOST_MOVE_USE_STANDARD_LIBRARY_MOVE.
remove_reference< T >::type Ty
Definition: decay.hpp:35
typename decay< T >::type decay_t
Definition: decay.hpp:42
const char * detail
remove_cv< T >::type type
Definition: decay.hpp:25
remove_bounds< T >::type * type
Definition: decay.hpp:26


librealsense2
Author(s): Sergey Dorodnicov , Doron Hirshberg , Mark Horn , Reagan Lopez , Itay Carpis
autogenerated on Mon May 3 2021 02:47:12