Skip to content

Commit

Permalink
fixup! Fixed compiler warnings from optimized builds
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Jan 15, 2019
1 parent 9990027 commit 4bcd7da
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions sql/sql_lex.h
Original file line number Diff line number Diff line change
Expand Up @@ -3439,13 +3439,16 @@ struct LEX: public Query_tables_list
{
DBUG_ENTER("LEX::pop_context");
#ifndef DBUG_OFF
Name_resolution_context *context= context_stack.pop();
Name_resolution_context *context=
#endif
context_stack.pop();

DBUG_PRINT("info", ("Pop context %p Select: %p (%d)",
context, context->select_lex,
(context->select_lex ?
context->select_lex->select_number:
0)));
#endif

DBUG_VOID_RETURN;
}

Expand Down

0 comments on commit 4bcd7da

Please sign in to comment.