cpp/error/error code/make error code : Différence entre versions
De cppreference.com
< cpp | error | error code
m (r2.7.3) (robot Ajoute : de, en, es, it, ja, pt, ru, zh) |
m (Use {{lc}}. Update links. Various fixes.) |
||
Ligne 11 : | Ligne 11 : | ||
===Paramètres=== | ===Paramètres=== | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{| e |{{tr| code d'erreur enum pour créer un code d'erreur pour| error code enum to create error code for}}}} |
− | {{ | + | {{end}} |
===Retourne la valeur=== | ===Retourne la valeur=== |
Version actuelle en date du 2 juillet 2013 à 04:54
![]() |
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. |
Déclaré dans l'en-tête <system_error>
|
||
error_code make_error_code( std::errc e ); |
(depuis C++11) | |
Crée de la valeur pour le code d'erreur ERRC enum
e
.Original:
Creates error code value for errc enum
e
.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.
Equivalent à error_code(static_cast<int>(e), generic_category())
Original:
Equivalent to error_code(static_cast<int>(e), generic_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.
[modifier] Paramètres
e | - | code d'erreur enum pour créer un code d'erreur pour
Original: error code enum to create error code for The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifier] Retourne la valeur
Le code d'erreur correspondant à
e
.Original:
Error code corresponding to
e
.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.