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:
Davi Arnaut 2010-07-03 10:20:05 -03:00
parent 0300935ff3
commit 85d281737f

View File

@ -74,7 +74,7 @@ public:
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;
first= tmp.first;