Home
last modified time | relevance | path

Searched refs:future_error (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/libcxx/src/
H A Dfuture.cpp74 future_error::future_error(error_code __ec) in future_error() function in future_error
80 future_error::~future_error() noexcept in ~future_error()
211 future_error(make_error_code(future_errc::broken_promise)) in ~promise()
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dfuture47 class future_error
51 future_error(error_code ec); // exposition only
52 explicit future_error(future_errc); // C++17
503 class _LIBCPP_EXCEPTION_ABI _LIBCPP_AVAILABILITY_FUTURE_ERROR future_error
508 future_error(error_code __ec);
513 future_error(const future_error&) _NOEXCEPT = default;
514 virtual ~future_error() _NOEXCEPT;
524 throw future_error(make_error_code(_Ev));
1345 future_error(make_error_code(future_errc::broken_promise))
1488 future_error(make_error_code(future_errc::broken_promise))
H A D__availability105 // This controls the availability of the std::future_error exception.