std::error_code::make_error_code
De cppreference.com
[] |
Esta pgina se ha traducido por ordenador/computador/computadora de la versin en ingls de la Wiki usando Google Translate.
La traduccin puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versin original. Puedes ayudar a corregir los errores y mejorar la traduccin. Para instrucciones haz clic aqu. |
| Definido en el archivo de encabezado <system_error>
|
||
error_code make_error_code( std::errc e );
|
(desde C++11) | |
Crea valor para el cdigo de error ERRC enumeracin
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.
Equivalente a
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.
Parmetros
| e | - | el cdigo de error de enumeracin para crear cdigo de error para
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. |
Valor de retorno
Error correspondiente a
e cdigo .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.