Commit ef2749c9 authored by Vicențiu Ciorbaru's avatar Vicențiu Ciorbaru

Fixup: Event_queue_element_for_exec initializer list not supported on gcc-4.1

parent 9e6e0eae
......@@ -33,7 +33,11 @@ struct TABLE;
class Event_queue_element_for_exec
{
public:
Event_queue_element_for_exec() : dbname{NULL, 0}, name{NULL, 0} {};
Event_queue_element_for_exec()
{
dbname.str= NULL; dbname.length= 0;
name.str= NULL; name.length= 0;
};
~Event_queue_element_for_exec();
bool
......
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