Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/
H A Dhas_trivial_move_constructor.hpp33 template <typename T> struct has_trivial_move_constructor : public integral_constant<bool, BOOST_HA… struct
61 template <> struct has_trivial_move_constructor<void> : public false_type{}; struct
63 template <> struct has_trivial_move_constructor<void const> : public false_type{}; struct
64 template <> struct has_trivial_move_constructor<void volatile> : public false_type{}; struct
65 template <> struct has_trivial_move_constructor<void const volatile> : public false_type{}; struct
68 template <class T> struct has_trivial_move_constructor<T&> : public true_type{}; struct
70 template <class T> struct has_trivial_move_constructor<T&&> : public true_type{}; struct
73 template <class T, std::size_t N> struct has_trivial_move_constructor<T[N]> : public false_type{}; struct
74 template <class T> struct has_trivial_move_constructor<T[]> : public false_type{}; struct