Home
last modified time | relevance | path

Searched defs:has_nothrow_constructor (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_constructor.hpp27 template <class T> struct has_nothrow_constructor : public integral_constant<bool, BOOST_HAS_NOTHRO… struct
62 template<> struct has_nothrow_constructor<void> : public false_type {}; struct
64 template<> struct has_nothrow_constructor<void const> : public false_type{}; struct
65 template<> struct has_nothrow_constructor<void const volatile> : public false_type{}; struct
66 template<> struct has_nothrow_constructor<void volatile> : public false_type{}; struct
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dtype-traits.cpp1579 void has_nothrow_constructor() { in has_nothrow_constructor() function