std::make_error_code(std::errc)
From cppreference.com
C++
Utilities library
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Diagnostics library
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::errc
| Non-member functions | ||||
make_error_code | ||||
| Helper classes | ||||
| Defined in header <system_error>
|
||
| std::error_code make_error_code( std::errc e ) noexcept; |
(since C++11) | |
Creates error code value for errc enum e.
Equivalent to std::error_code(static_cast<int>(e), std::generic_category()
[edit] Parameters
| e | - | error code enum to create error code for |
[edit] Return value
Error code corresponding to e.
[edit] See also
| constructs an iostream error code (function) [edit] | |
| constructs a future error code (function) [edit] |