std::error_category::default_error_condition
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
virtual std::error_condition default_error_condition( int code ) const; |
(desde C++11) | |
Devuelve el estado de error para el código de error que .
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.
Parámetros
| code | - | el código de error que se devuelve condición de error
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. |
Valor de retorno
La condición de error para el código de error .
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.