Commit 85d28173 authored by Davi Arnaut's avatar Davi Arnaut

Fix somewhat bogus GCC warning. Although needless as the base

class is mostly empty, initialize the base class explicitly in
the copy constructor.
parent 0300935f
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment