std::error_code::clear
De cppreference.com
<metanoindex/>
<tbody> </tbody> void clear(); |
(desde C++11) | |
Substitui o código de erro e categoria de erro com valores padrão.
Original:
Replaces the error code and error category with default values.
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
*this = error_code(0, std::system_category()).Original:
Equivalent to
*this = error_code(0, std::system_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.
Parâmetros
(Nenhum)
Original:
(none)
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.
Valor de retorno
(Nenhum)
Original:
(none)
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.
