Fixes for variable shadowing (23/28)
This commit is contained in:
parent
31738bddff
commit
5455b12454
1 changed files with 2 additions and 2 deletions
|
|
@ -269,8 +269,8 @@ protected:
|
||||||
what_to_keep(_what_to_keep) {
|
what_to_keep(_what_to_keep) {
|
||||||
TRACE_CTOR(query_t::parser_t, "value_t, keep_details_t, bool");
|
TRACE_CTOR(query_t::parser_t, "value_t, keep_details_t, bool");
|
||||||
}
|
}
|
||||||
parser_t(const parser_t& parser)
|
parser_t(const parser_t& other)
|
||||||
: args(parser.args), lexer(parser.lexer) {
|
: args(other.args), lexer(other.lexer) {
|
||||||
TRACE_CTOR(query_t::parser_t, "copy");
|
TRACE_CTOR(query_t::parser_t, "copy");
|
||||||
}
|
}
|
||||||
~parser_t() throw() {
|
~parser_t() throw() {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue