operator!= (<system_error>)

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).

See Also

Reference

<system_error>

Other Resources

<system_error> Members