diff options
author | Alexander Nozdrin <alik@sun.com> | 2010-04-12 17:17:37 +0400 |
---|---|---|
committer | Alexander Nozdrin <alik@sun.com> | 2010-04-12 17:17:37 +0400 |
commit | 50ff45156653ad26b849bfc64e92aea7dc283b9d (patch) | |
tree | 07de8752c2b89e5dc9eb4362f9e6cf8c0ef82713 /sql/sql_base.h | |
parent | 7decb1b9289cf1ea125a0a09e74b7b9bac025fec (diff) | |
download | mariadb-git-50ff45156653ad26b849bfc64e92aea7dc283b9d.tar.gz |
A post-fix patch for WL#4877/WL#5030:
Fix tons of warnings about mismatch struct and class usage.
Diffstat (limited to 'sql/sql_base.h')
-rw-r--r-- | sql/sql_base.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_base.h b/sql/sql_base.h index eac29b1c257..a57666afe49 100644 --- a/sql/sql_base.h +++ b/sql/sql_base.h @@ -23,13 +23,13 @@ #include "mysqld.h" /* key_map */ class Item_ident; -class Name_resolution_context; +struct Name_resolution_context; class Open_table_context; class Open_tables_state; class Prelocking_strategy; -class TABLE_LIST; +struct TABLE_LIST; class THD; -class handlerton; +struct handlerton; struct TABLE; typedef class st_select_lex SELECT_LEX; |