diff options
Diffstat (limited to 'src/predicate.cc')
-rw-r--r-- | src/predicate.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/predicate.cc b/src/predicate.cc index 2ff897e5..49249482 100644 --- a/src/predicate.cc +++ b/src/predicate.cc @@ -37,8 +37,9 @@ string args_to_predicate_expr(value_t::sequence_t::const_iterator& begin, value_t::sequence_t::const_iterator end) { std::ostringstream expr; - bool append_or = false; - bool only_parenthesis; + + bool append_or = false; + bool only_parenthesis = false; while (begin != end) { string arg = (*begin).as_string(); |