summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2019-01-15 16:44:13 +0100
committerVladislav Vaintroub <wlad@mariadb.com>2019-01-15 16:44:13 +0100
commit4bcd7da0768e93876f365a18b62381608879ff91 (patch)
tree0c4452da26e01630a05caaccb8c21a0dc15121cd
parent9990027f872764d64e6a450fe9988fb9a7263c5c (diff)
downloadmariadb-git-10.4-nss.tar.gz
fixup! Fixed compiler warnings from optimized builds10.4-nss
-rw-r--r--sql/sql_lex.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h
index 49ff46c2bf9..c22f95978a0 100644
--- a/sql/sql_lex.h
+++ b/sql/sql_lex.h
@@ -3439,13 +3439,16 @@ public:
{
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;
}