Closed vaipatel closed 3 years ago
Hello, the above warning is issued for lines 87 and 97. I believe the warning occurs because operator!() has higher precedence than operator>().
operator!()
operator>()
Alternatively, we can use:
iClient->connect(iServerAddress, iServerPort) <= 0
Hi there,
what about this?
Hello, the above warning is issued for lines 87 and 97. I believe the warning occurs because
operator!()
has higher precedence thanoperator>()
.Alternatively, we can use: