Home
last modified time | relevance | path

Searched defs:has_trivial_copy (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/type_traits/
Dhas_trivial_copy.hpp31 template <typename T> struct has_trivial_copy struct
40 template <typename T, std::size_t N> struct has_trivial_copy<T[N]> : public false_type{}; struct
41 template <typename T> struct has_trivial_copy<T[]> : public false_type{}; struct
43 template <typename T> struct has_trivial_copy<T volatile> : public false_type{}; struct
45 template <> struct has_trivial_copy<void> : public false_type{}; struct
47 template <> struct has_trivial_copy<void const> : public false_type{}; struct
48 template <> struct has_trivial_copy<void volatile> : public false_type{}; struct
49 template <> struct has_trivial_copy<void const volatile> : public false_type{}; struct
52 template <class T> struct has_trivial_copy<T&> : public false_type{}; struct
54 template <class T> struct has_trivial_copy<T&&> : public false_type{}; struct