summaryrefslogtreecommitdiff
path: root/libs/ardour/processor.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-02-07 01:12:55 +0000
committerCarl Hetherington <carl@carlh.net>2011-02-07 01:12:55 +0000
commitad1f38c0a232ff31e4221a3e7fad75e0b785ae2e (patch)
treedb6b776472381c461494af588e0d7fb8a36e5d78 /libs/ardour/processor.cc
parent49869c98f359c68baa4ef6e26f7d5b36c348341c (diff)
Fix warning.
git-svn-id: svn://localhost/ardour2/branches/3.0@8734 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/processor.cc')
-rw-r--r--libs/ardour/processor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc
index 52228794a5..66d45a4174 100644
--- a/libs/ardour/processor.cc
+++ b/libs/ardour/processor.cc
@@ -73,8 +73,8 @@ Processor::Processor(Session& session, const string& name)
}
Processor::Processor (const Processor& other)
- : SessionObject(other.session(), other.name())
- , Evoral::ControlSet (other)
+ : Evoral::ControlSet (other)
+ , SessionObject (other.session(), other.name())
, Automatable (other.session())
, _pending_active(other._pending_active)
, _active(other._active)