Reduce compiled code size a bit

This commit is contained in:
ridiculousfish
2013-04-13 01:32:07 -07:00
parent 46579f3799
commit c37c7cee05
3 changed files with 25 additions and 51 deletions

View File

@@ -719,6 +719,14 @@ void event_fire_generic(const wchar_t *name, wcstring_list_t *args)
event_fire(&ev);
}
event_t::event_t(int t) : type(t), param1(), str_param1(), function_name(), arguments()
{
}
event_t::~event_t()
{
}
event_t event_t::signal_event(int sig)
{
event_t event(EVENT_SIGNAL);