diff options
author | monty@mashka.mysql.fi <> | 2003-05-21 21:39:58 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-05-21 21:39:58 +0300 |
commit | 6aa8929cf37374fe74c31eb03007961fa119213a (patch) | |
tree | 3df25ac7036fb4b2e95ab56b9dc90477ec234b7c /sql/sql_list.h | |
parent | dd2b7918cdd5e0e643cff0305542ccd4aa8f1b6b (diff) | |
download | mariadb-git-6aa8929cf37374fe74c31eb03007961fa119213a.tar.gz |
After merge fixes
Added initialization of all important global variables
Diffstat (limited to 'sql/sql_list.h')
-rw-r--r-- | sql/sql_list.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_list.h b/sql/sql_list.h index 27cdc117267..ff21663576a 100644 --- a/sql/sql_list.h +++ b/sql/sql_list.h @@ -368,6 +368,7 @@ template <class T> class I_List :private base_ilist { public: I_List() :base_ilist() {} + inline void empty() { base_ilist::empty(); } inline bool is_empty() { return base_ilist::is_empty(); } inline void append(T* a) { base_ilist::append(a); } inline void push_back(T* a) { base_ilist::push_back(a); } |