Searched defs:intrinsic_type (Results 1 - 1 of 1) sorted by relevance

/gem5/ext/pybind11/include/pybind11/detail/
H A Dcommon.h507 template <typename T> struct intrinsic_type { typedef T type; }; struct
508 template <typename T> struct intrinsic_type<const T> { typedef typename intrinsic_type<T>::type type; }; struct
509 template <typename T> struct intrinsic_type<T*> { typedef typename intrinsic_type<T>::type type; }; struct
510 template <typename T> struct intrinsic_type<T&> { typedef typename intrinsic_type<T>::type type; }; struct
511 template <typename T> struct intrinsic_type<T&&> { typedef typename intrinsic_type<T>::type type; }; struct
512 template <typename T, size_t N> struct intrinsic_type<cons struct
513 template <typename T, size_t N> struct intrinsic_type<T[N]> { typedef typename intrinsic_type<T>::type type; }; struct
[all...]

Completed in 6 milliseconds