mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
After merge fixes
Added initialization of all important global variables
This commit is contained in:
@ -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); }
|
||||
|
Reference in New Issue
Block a user