Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Tests if the object on the left side of the operator is equal to the object on the right side.
bool operator==(const error_code& _Left, const error_condition& _Right);
bool operator==(const error_condition& _Left, const error_code& _Right);
Parameters
Parameter |
Description |
|---|---|
_Left |
The object to be tested for equality. |
_Right |
The object to be tested for equality. |
Return Value
true if the objects are equal; false if objects are not equal.
Remarks
This function returns _Left.category() == _Right.category() && _Left.value() == _Right.value().
Requirements
Header: <system_error>
Namespace: std