diff --git a/src/parser/PrismParser/Tokens.h b/src/parser/PrismParser/Tokens.h index cf0392f32..bd246d358 100644 --- a/src/parser/PrismParser/Tokens.h +++ b/src/parser/PrismParser/Tokens.h @@ -54,6 +54,7 @@ namespace prism { relationalOperatorStruct() { add ("=", BinaryRelationExpression::EQUAL) + ("!=", BinaryRelationExpression::NOT_EQUAL) ("<", BinaryRelationExpression::LESS) ("<=", BinaryRelationExpression::LESS_OR_EQUAL) (">", BinaryRelationExpression::GREATER)