From 5455b124545a1a6cd991f10640087ed5279197d2 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 17 Feb 2012 14:30:04 -0600 Subject: Fixes for variable shadowing (23/28) --- src/query.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/query.h') 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() { -- cgit v1.2.3