Skip to content

Commit 7bca6b5

Browse files
committed
Add support for not in from #12871
1 parent 3bd1999 commit 7bca6b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/hrw4u/HRW4UVisitorImpl.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1220,7 +1220,7 @@ HRW4UVisitorImpl::process_comparison(hrw4uParser::ComparisonContext *ctx, bool n
12201220
std::string op_text = ctx->children[1]->getText();
12211221
bool is_negated = negated;
12221222

1223-
if (op_text == "!=" || op_text == "!~") {
1223+
if (op_text == "!=" || op_text == "!~" || op_text == "!") {
12241224
is_negated = !is_negated;
12251225
}
12261226

0 commit comments

Comments
 (0)