Home
last modified time | relevance | path

Searched defs:has_nothrow_assign (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_nothrow_assign.hpp53 struct has_nothrow_assign : public integral_constant < bool, struct
69 template <class T, std::size_t N> struct has_nothrow_assign <T[N]> : public has_nothrow_assign<T> {… struct
70 template <> struct has_nothrow_assign<void> : public false_type{}; struct
71 template <class T> struct has_nothrow_assign<T volatile> : public false_type{}; struct
72 template <class T> struct has_nothrow_assign<T&> : public false_type{}; struct
74 template <class T> struct has_nothrow_assign<T&&> : public false_type{}; struct
77 template <> struct has_nothrow_assign<void const> : public false_type{}; struct
78 template <> struct has_nothrow_assign<void const volatile> : public false_type{}; struct
79 template <> struct has_nothrow_assign<void volatile> : public false_type{}; struct