MCPcopy Create free account
hub / github.com/NativeScript/android / throw_exception

Function throw_exception

test-app/runtime/src/main/cpp/ada/ada.h:1820–1831  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1818namespace detail {
1819template <typename E>
1820[[noreturn]] TL_EXPECTED_11_CONSTEXPR void throw_exception(E &&e) {
1821#ifdef TL_EXPECTED_EXCEPTIONS_ENABLED
1822 throw std::forward<E>(e);
1823#else
1824 (void)e;
1825#ifdef _MSC_VER
1826 __assume(0);
1827#else
1828 __builtin_unreachable();
1829#endif
1830#endif
1831}
1832
1833#ifndef TL_TRAITS_MUTEX
1834#define TL_TRAITS_MUTEX

Callers 1

ada.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected