Merge pull request #160 from workhorsy/master

Added missing check for <>=, the deprecated floating point operator.
This commit is contained in:
Hackerpilot 2014-04-13 18:18:35 -07:00
commit 7c49a32de0
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!"!<"