diff options
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); } |