summaryrefslogtreecommitdiff
path: root/libs/ardour/lv2_plugin.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-05-02 20:29:46 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-05-02 20:29:46 +0000
commit4235e9a1a278d5a6c0403ea5cb5c7477e2a1b8ad (patch)
tree9f10cc7b32efa92df06a147e70a8388350ea2c6b /libs/ardour/lv2_plugin.cc
parentc977b157bc2f129f50eb2e46cc335138a0f731ac (diff)
a variety of mostly unused parameter errors from OS X Lion's compiler
git-svn-id: svn://localhost/ardour2/branches/3.0@12148 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/lv2_plugin.cc')
-rw-r--r--libs/ardour/lv2_plugin.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/ardour/lv2_plugin.cc b/libs/ardour/lv2_plugin.cc
index 0b3bc3cd18..46c09a1227 100644
--- a/libs/ardour/lv2_plugin.cc
+++ b/libs/ardour/lv2_plugin.cc
@@ -175,7 +175,8 @@ LV2Plugin::LV2Plugin (AudioEngine& engine,
Session& session,
void* c_plugin,
framecnt_t rate)
- : Plugin(engine, session)
+ : Plugin (engine, session)
+ , Workee ()
, _impl(new Impl())
, _features(NULL)
, _worker(NULL)
@@ -185,7 +186,8 @@ LV2Plugin::LV2Plugin (AudioEngine& engine,
}
LV2Plugin::LV2Plugin (const LV2Plugin& other)
- : Plugin(other)
+ : Plugin (other)
+ , Workee ()
, _impl(new Impl())
, _features(NULL)
, _worker(NULL)