std::error_category::default_error_condition
Aus 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; |
(seit C++11) | |
Gibt die Fehlerbedingung für den angegebenen Fehlercode .
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.
Entspricht
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.
Parameter
| code | - | Fehlercode, für die Fehlerbedingung zurück
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. |
Rückgabewert
Die Fehlerbedingung für den angegebenen Fehlercode .
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.