diff options
Diffstat (limited to 'src/query.cc')
-rw-r--r-- | src/query.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/query.cc b/src/query.cc index b93c6534..5c11add5 100644 --- a/src/query.cc +++ b/src/query.cc @@ -295,7 +295,7 @@ query_t::parser_t::parse_query_term(query_t::lexer_t::token_t::kind_t tok_contex if (tok.kind != lexer_t::token_t::TERM) throw_(parse_error, _("Metadata equality operator not followed by term")); - + expr_t::ptr_op_t arg2 = new expr_t::op_t(expr_t::op_t::VALUE); assert(tok.value); arg2->set_value(mask_t(*tok.value)); @@ -309,7 +309,7 @@ query_t::parser_t::parse_query_term(query_t::lexer_t::token_t::kind_t tok_contex } break; } - + default: { node = new expr_t::op_t(expr_t::op_t::O_MATCH); |