std::error_category::default_error_condition
Da cppreference.com.
|
|
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. |
<metanoindex/>
<tbody> </tbody> virtual std::error_condition default_error_condition( int code ) const; |
(dal C++11) | |
Restituisce la condizione di errore per il codice di errore.
Original:
Returns the error condition for the given error code.
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
std::error_condition(code, *this).Original:
Equivalent to
std::error_condition(code, *this).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.
Parametri
| code | - | codice di errore per il quale restituire condizione di errore
Original: error code for which to return error condition The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valore di ritorno
La condizione di errore per il codice di errore.
Original:
The error condition for the given error code.
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.