summaryrefslogtreecommitdiff
path: root/libs/ardour/automatable.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-08-07 13:57:49 +0200
committerRobin Gareus <robin@gareus.org>2017-08-07 13:57:49 +0200
commit4994bc4fb1c0d835f04e08939ea095e972e19cef (patch)
treea018a2d61ba6d9b47b4ff72ca8d4f47e081e3cfe /libs/ardour/automatable.cc
parent29cc1f06b601c52421e4bc1f28ca1852fa2650db (diff)
Explicitly initialize parent in the copy constructor
Diffstat (limited to 'libs/ardour/automatable.cc')
-rw-r--r--libs/ardour/automatable.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/automatable.cc b/libs/ardour/automatable.cc
index 3dad4ccd31..57c8205717 100644
--- a/libs/ardour/automatable.cc
+++ b/libs/ardour/automatable.cc
@@ -57,6 +57,7 @@ Automatable::Automatable(Session& session)
Automatable::Automatable (const Automatable& other)
: ControlSet (other)
+ , Slavable ()
, _a_session (other._a_session)
{
Glib::Threads::Mutex::Lock lm (other._control_lock);