std::error_code::make_error_code
Aus cppreference.com
definiert in Header <system_error>
|
||
error_code make_error_code( std::errc e ); |
(seit C++11) | |
Erstellt Fehlercode Wert für ERRC enum
e
.Original:
Creates error code value for errc enum
e
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Entspricht error_code(static_cast<int>(e), generic_category())
Original:
Equivalent to error_code(static_cast<int>(e), generic_category())
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parameter
e | - | Fehlercode enum zu Fehlercode erstellen
Original: error code enum to create error code for The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
Fehlercode entspricht
e
.Original:
Error code corresponding to
e
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.