Searched refs:future_error (Results 1 – 4 of 4) sorted by relevance
56 future_error::future_error(error_code __ec) : logic_error(__ec.message()), __ec_(__ec) {} in future_error() function in future_error58 future_error::~future_error() noexcept {} in ~future_error()147 __state_->set_exception(make_exception_ptr(future_error(future_errc::broken_promise))); in ~promise()
33 // [futures.future.error], class future_error34 using std::future_error;
47 class future_error : public logic_error {49 explicit future_error(future_errc e); // since C++17476 class _LIBCPP_EXPORTED_FROM_ABI future_error : public logic_error {479 future_error(error_code);486 …_LIBCPP_HIDE_FROM_ABI explicit future_error(future_errc __ec) : future_error(std::make_error_code(…491 _LIBCPP_HIDE_FROM_ABI future_error(const future_error&) _NOEXCEPT = default;492 ~future_error() _NOEXCEPT override;495 // Declared above std::future_error498 throw future_error(make_error_code(__ev));501 _LIBCPP_VERBOSE_ABORT("future_error was thrown in -fno-exceptions mode");[all …]
1394 SYMBOL(future_error, std::, <future>)