std::make_error_code(std::future_errc)

Header: <future>

Constructs an std::error_code object from a value of type std::future_errc as if by:

# Declarations

std::error_code make_error_code( std::future_errc e );

(since C++11)

# Parameters

# Return value

A value of type std::error_code that holds the error code number from e associated with the error category “future”.

# Example

This section is incompleteReason: no example

# See also