From 3f0152149e1a65ad3d68cd79c40e08a9da25d5b0 Mon Sep 17 00:00:00 2001 From: Kazunari Sekigawa Date: Tue, 19 Dec 2017 21:30:01 +0900 Subject: [PATCH] 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 e254f8a67e6c6b8c76f9238f50a4600bfecc4457) --- src/tl/tl/tlEventsVar.h | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/src/tl/tl/tlEventsVar.h b/src/tl/tl/tlEventsVar.h index 4470c83f8..d84e90c84 100644 --- a/src/tl/tl/tlEventsVar.h +++ b/src/tl/tl/tlEventsVar.h @@ -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 (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 (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 (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 (object);