std::make_error_code(std::errc)

From cppreference.com
< cpp‎ | error‎ | errc
 
 
Utilities library
Type support (basic types, RTTI, type traits)
Dynamic memory management
Error handling
Program utilities
Variadic functions
Date and time
Function objects
(C++11)
Relational operators
Optional and any
(C++17)
(C++17)
Pairs and tuples
(C++11)
(C++17)
Swap, forward and move
(C++14)
(C++11)
(C++11)
Type operations
(C++11)
(C++17)
 
 
std::errc
Non-member functions
make_error_code
Helper classes
 
Defined in header <system_error>
std::error_code make_error_code( std::errc e );
(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] Exceptions

noexcept specification:  
noexcept