std::error_category::default_error_condition
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody> virtual std::error_condition default_error_condition( int code ) const; |
(desde C++11) | |
Retorna a condição de erro para o código de erro apresentado.
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 | - | código de erro para o qual retornar condição de erro
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
A condição de erro para o código de erro dado.
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.