mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Fix somewhat bogus GCC warning. Although needless as the base
class is mostly empty, initialize the base class explicitly in the copy constructor.
This commit is contained in:
@@ -74,7 +74,7 @@ public:
|
|||||||
|
|
||||||
SQL_I_List() { empty(); }
|
SQL_I_List() { empty(); }
|
||||||
|
|
||||||
SQL_I_List(const SQL_I_List &tmp)
|
SQL_I_List(const SQL_I_List &tmp) : Sql_alloc()
|
||||||
{
|
{
|
||||||
elements= tmp.elements;
|
elements= tmp.elements;
|
||||||
first= tmp.first;
|
first= tmp.first;
|
||||||
|
Reference in New Issue
Block a user