diff options
Diffstat (limited to 'src/query.h')
-rw-r--r-- | src/query.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/query.h b/src/query.h index aca31b61..e77e64ab 100644 --- a/src/query.h +++ b/src/query.h @@ -269,8 +269,8 @@ protected: what_to_keep(_what_to_keep) { TRACE_CTOR(query_t::parser_t, "value_t, keep_details_t, bool"); } - parser_t(const parser_t& parser) - : args(parser.args), lexer(parser.lexer) { + parser_t(const parser_t& other) + : args(other.args), lexer(other.lexer) { TRACE_CTOR(query_t::parser_t, "copy"); } ~parser_t() throw() { |