Searched defs:has_trivial_move_constructor (Results 1 – 1 of 1) sorted by relevance
34 template <typename T> struct has_trivial_move_constructor : public integral_constant<bool, BOOST_HA… struct62 template <> struct has_trivial_move_constructor<void> : public false_type{}; struct64 template <> struct has_trivial_move_constructor<void const> : public false_type{}; struct65 template <> struct has_trivial_move_constructor<void volatile> : public false_type{}; struct66 template <> struct has_trivial_move_constructor<void const volatile> : public false_type{}; struct69 template <class T> struct has_trivial_move_constructor<T&> : public true_type{}; struct71 template <class T> struct has_trivial_move_constructor<T&&> : public true_type{}; struct74 template <class T, std::size_t N> struct has_trivial_move_constructor<T[N]> : public false_type{}; struct75 template <class T> struct has_trivial_move_constructor<T[]> : public false_type{}; struct