std::error_code::make_error_code
Da cppreference.com.
< cpp | error | error code
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <system_error>
|
||
error_code make_error_code( std::errc e ); |
(dal C++11) | |
Crea valore del codice di errore per 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.
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.
[modifica] Parametri
e | - | codice di errore enum per creare codice di errore relativo
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. |
[modifica] Valore di ritorno
Codice di errore corrispondente a
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.