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())
.
e | - | error code enum to create error code for |
Error code corresponding to e
.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/error/errc/make_error_code