From 3d628b6eee5d5e3819dba6fa1ec774dae41d46cf Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Fri, 4 Jan 2013 04:34:01 +0100 Subject: [PATCH] fix ill-guided linking of the DummyPlayer facade object type info DummyPlayer is experimental code, but actually we've established the convention to linke the facade-proxies into common/interfaceproxy.cpp --- src/proc/play/dummy-player-interface-proxy.hpp | 3 +++ src/proc/play/dummy-player-service.cpp | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/proc/play/dummy-player-interface-proxy.hpp b/src/proc/play/dummy-player-interface-proxy.hpp index 4753250a2..57710c39d 100644 --- a/src/proc/play/dummy-player-interface-proxy.hpp +++ b/src/proc/play/dummy-player-interface-proxy.hpp @@ -46,6 +46,9 @@ namespace lumiera { /** storage for the DummyPlayer facade proxy factory... */ lumiera::facade::Accessor DummyPlayer::facade; + // emit the vtable here into this translation unit within liblumieracommon.so ... + DummyPlayer::~DummyPlayer() { } + diff --git a/src/proc/play/dummy-player-service.cpp b/src/proc/play/dummy-player-service.cpp index d4905f2d4..fef997631 100644 --- a/src/proc/play/dummy-player-service.cpp +++ b/src/proc/play/dummy-player-service.cpp @@ -376,8 +376,5 @@ namespace lumiera { /* === Forwarding function(s) on the Process handle === */ return proc::play::theDummyPlayerDescriptor(); } - // emit the vtable here into this translation unit within liblumieraproc.so ... - DummyPlayer::~DummyPlayer() { } - } // namespace lumiera