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
This commit is contained in:
parent
1328ef4aa6
commit
3d628b6eee
2 changed files with 3 additions and 3 deletions
|
|
@ -46,6 +46,9 @@ namespace lumiera {
|
|||
/** storage for the DummyPlayer facade proxy factory... */
|
||||
lumiera::facade::Accessor<DummyPlayer> DummyPlayer::facade;
|
||||
|
||||
// emit the vtable here into this translation unit within liblumieracommon.so ...
|
||||
DummyPlayer::~DummyPlayer() { }
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue