Searched refs:future_error (Results 1 – 10 of 10) sorted by relevance
76 { _GLIBCXX_THROW_OR_ABORT(future_error(make_error_code(future_errc(__i)))); } in __throw_future_error()81 future_error::~future_error() noexcept { } in ~future_error()84 future_error::what() const noexcept { return logic_error::what(); } in what()
86 { _GLIBCXX_THROW_OR_ABORT(future_error(make_error_code(future_errc(__i)))); } in __throw_future_error()91 future_error::~future_error() noexcept { } in ~future_error()94 future_error::what() const noexcept { return logic_error::what(); } in what()
74 future_error::future_error(error_code __ec) in future_error() function in future_error80 future_error::~future_error() noexcept in ~future_error()211 future_error(make_error_code(future_errc::broken_promise)) in ~promise()
47 class future_error51 future_error(error_code ec); // exposition only52 explicit future_error(future_errc); // C++17499 class _LIBCPP_EXCEPTION_ABI _LIBCPP_AVAILABILITY_FUTURE_ERROR future_error504 future_error(error_code __ec);509 future_error(const future_error&) _NOEXCEPT = default;510 virtual ~future_error() _NOEXCEPT;520 throw future_error(make_error_code(_Ev));1341 future_error(make_error_code(future_errc::broken_promise))1484 future_error(make_error_code(future_errc::broken_promise))
105 // This controls the availability of the std::future_error exception.
96 class future_error : public logic_error100 future_error(future_errc __errc)101 : future_error(std::make_error_code(__errc))104 virtual ~future_error() noexcept;114 future_error(error_code __ec)115 : logic_error("std::future_error: " + __ec.message()), _M_code(__ec)449 make_exception_ptr(future_error(future_errc::broken_promise));
106 class future_error : public logic_error110 future_error(future_errc __errc)111 : future_error(std::make_error_code(__errc))114 virtual ~future_error() noexcept;124 future_error(error_code __ec)125 : logic_error("std::future_error: " + __ec.message()), _M_code(__ec)463 make_exception_ptr(future_error(future_errc::broken_promise));
89 "`P0517R0 <https://wg21.link/P0517R0>`__","LWG","Make future_error Constructible","Issaquah","|Comp…
4367 * include/std/future (future_error(error_code)): Construct base4369 * src/c++11/future.cc (future_error::what()): Do not call c_str() on
951 * include/std/future (future_error): Fix public typo to private.955 * include/std/future (future_error): Make existing constructor