Added missing check for <>=, the deprecated floating point operator.

This commit is contained in:
Matthew Brennan Jones 2014-04-13 12:21:44 -07:00
parent c8efa5ae12
commit 1d2c529b24
1 changed files with 1 additions and 0 deletions

View File

@ -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!"!<"