Searched defs:has_trivial_copy (Results 1 – 1 of 1) sorted by relevance
31 template <typename T> struct has_trivial_copy struct40 template <typename T, std::size_t N> struct has_trivial_copy<T[N]> : public false_type{}; struct41 template <typename T> struct has_trivial_copy<T[]> : public false_type{}; struct43 template <typename T> struct has_trivial_copy<T volatile> : public false_type{}; struct45 template <> struct has_trivial_copy<void> : public false_type{}; struct47 template <> struct has_trivial_copy<void const> : public false_type{}; struct48 template <> struct has_trivial_copy<void volatile> : public false_type{}; struct49 template <> struct has_trivial_copy<void const volatile> : public false_type{}; struct52 template <class T> struct has_trivial_copy<T&> : public false_type{}; struct54 template <class T> struct has_trivial_copy<T&&> : public false_type{}; struct