Home
last modified time | relevance | path

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

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/variant/test/
Dvariant_nonempty_check.cpp39 struct throwing_class { struct
63 throwing_class(int value = 123) BOOST_NOEXCEPT_IF(false) : trash(value) { in BOOST_NOEXCEPT_IF() argument
67 throwing_class(const throwing_class& b) BOOST_NOEXCEPT_IF(false) : trash(b.trash) { in BOOST_NOEXCEPT_IF() argument
73 const throwing_class& operator=(const throwing_class& b) BOOST_NOEXCEPT_IF(false) { in operator =() argument
83 throwing_class(throwing_class&& b) BOOST_NOEXCEPT_IF(false) : trash(b.trash) { in BOOST_NOEXCEPT_IF() argument
89 const throwing_class& operator=(throwing_class&& b) BOOST_NOEXCEPT_IF(false) { in operator =() argument
99 virtual ~throwing_class() {} in ~throwing_class() argument