Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Tests if the object on the left side of the operator is not 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 inequality. |
_Right |
The object to be tested for inequality. |
Return Value
true if the object passed in _Left is not equal to the object passed in _Right; otherwise false.
Remarks
This function returns !(_Left == _Right).