Home
last modified time | relevance | path

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

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/
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
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dtype-traits.cpp1459 void has_nothrow_assign() { in has_nothrow_assign() function