|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Non-member functions | ||||
make_error_condition | ||||
| Helper classes | ||||
Defined in header <future> | ||
std::error_condition make_error_condition(std::future_errc e); | (since C++11) | |
Constructs anstd::error_condition object from a value of typestd::future_errc as if by:
std::error_condition(static_cast<int>(e),std::future_category()).
Contents |
| e | - | error code number |
A value of typestd::error_condition that holds the error code number frome associated with the error category"future".
| This section is incomplete Reason: no example |
(C++11) | holds a portable error code (class)[edit] |
(C++11) | identifies the future error codes (enum)[edit] |