Added missing check for <>=, the deprecated floating point operator.
This commit is contained in:
parent
c8efa5ae12
commit
1d2c529b24
|
@ -24,6 +24,7 @@ class FloatOperatorCheck : BaseAnalyzer
|
|||
override void visit(const RelExpression r)
|
||||
{
|
||||
if (r.operator == tok!"<>"
|
||||
|| r.operator == tok!"<>="
|
||||
|| r.operator == tok!"!<>"
|
||||
|| r.operator == tok!"!>"
|
||||
|| r.operator == tok!"!<"
|
||||
|
|
Loading…
Reference in New Issue