summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorMichael Widenius <monty@askmonty.org>2012-08-06 16:33:11 +0300
committerMichael Widenius <monty@askmonty.org>2012-08-06 16:33:11 +0300
commita7123f507598690ef0fce68b5d8dc58e63635024 (patch)
tree87f81592dbe473770830e1fb168699544d5484c3 /sql
parent6ed4a283fd18a3dbbd7042edb61e12fbd1e3f366 (diff)
downloadmariadb-git-a7123f507598690ef0fce68b5d8dc58e63635024.tar.gz
Fixed compiler warnings
sql/log.h: Fixed compiler warnings reported for gcc 2.7.1 storage/xtradb/handler/ha_innodb.cc: Remove not used variables
Diffstat (limited to 'sql')
-rw-r--r--sql/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/log.h b/sql/log.h
index b350f3882fa..6c21a34fd08 100644
--- a/sql/log.h
+++ b/sql/log.h
@@ -477,8 +477,8 @@ class MYSQL_BIN_LOG: public TC_LOG, private MYSQL_LOG
void mark_xids_active(uint xid_count);
public:
- MYSQL_LOG::generate_name;
- MYSQL_LOG::is_open;
+ using MYSQL_LOG::generate_name;
+ using MYSQL_LOG::is_open;
/* This is relay log */
bool is_relay_log;