To try suggested patch "patch0.patch.txt" provided by Matthias.

I should have created a topic branch for this.

This refs #8. (reverted from commit e254f8a67e)
This commit is contained in:
Kazunari Sekigawa 2017-12-19 21:30:01 +09:00
parent e254f8a67e
commit 3f0152149e
1 changed files with 0 additions and 24 deletions

View File

@ -52,12 +52,6 @@ public:
// .. nothing yet ..
}
event_function (const event_function &other)
: m_m (other.m_m)
{
// .. nothing yet ..
}
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
{
T *t = dynamic_cast<T *> (object);
@ -87,12 +81,6 @@ public:
// .. nothing yet ..
}
event_function_with_data (const event_function_with_data &other)
: m_m (other.m_m), m_d (other.m_d)
{
// .. nothing yet ..
}
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
{
T *t = dynamic_cast<T *> (object);
@ -123,12 +111,6 @@ public:
// .. nothing yet ..
}
generic_event_function (const generic_event_function &other)
: m_m (other.m_m)
{
// .. nothing yet ..
}
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
{
T *t = dynamic_cast<T *> (object);
@ -159,12 +141,6 @@ public:
// .. nothing yet ..
}
generic_event_function_with_data (const generic_event_function_with_data &other)
: m_m (other.m_m), m_d (other.m_d)
{
// .. nothing yet ..
}
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
{
T *t = dynamic_cast<T *> (object);