Home
last modified time | relevance | path

Searched defs:is_nothrow_move_assignable (Results 1 – 2 of 2) 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 Dis_nothrow_move_assignable.hpp27 struct is_nothrow_move_assignable : public integral_constant<bool, BOOST_IS_NOTHROW_MOVE_ASSIGN(T)>… struct
28 template <class T> struct is_nothrow_move_assignable<T const> : public false_type{}; struct
29 template <class T> struct is_nothrow_move_assignable<T volatile> : public false_type{}; struct
30 template <class T> struct is_nothrow_move_assignable<T const volatile> : public false_type{}; struct
31 template <class T> struct is_nothrow_move_assignable<T&> : public false_type{}; struct
33 template <class T> struct is_nothrow_move_assignable<T&&> : public false_type{}; struct
72 template <> struct is_nothrow_move_assignable<void> : public false_type{}; struct
74 template <> struct is_nothrow_move_assignable<void const> : public false_type{}; struct
75 template <> struct is_nothrow_move_assignable<void const volatile> : public false_type{}; struct
76 template <> struct is_nothrow_move_assignable<void volatile> : public false_type{}; struct
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/detail/
H A Dtype_traits.hpp883 struct is_nothrow_move_assignable struct
884 { static const bool value = BOOST_MOVE_IS_NOTHROW_MOVE_ASSIGNABLE(T); };