1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

fixup! Fixed compiler warnings from optimized builds

This commit is contained in:
Vladislav Vaintroub
2019-01-15 16:44:13 +01:00
parent 9990027f87
commit 4bcd7da076

View File

@ -3439,13 +3439,16 @@ public:
{ {
DBUG_ENTER("LEX::pop_context"); DBUG_ENTER("LEX::pop_context");
#ifndef DBUG_OFF #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)", DBUG_PRINT("info", ("Pop context %p Select: %p (%d)",
context, context->select_lex, context, context->select_lex,
(context->select_lex ? (context->select_lex ?
context->select_lex->select_number: context->select_lex->select_number:
0))); 0)));
#endif
DBUG_VOID_RETURN; DBUG_VOID_RETURN;
} }