From ad1f38c0a232ff31e4221a3e7fad75e0b785ae2e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 7 Feb 2011 01:12:55 +0000 Subject: Fix warning. git-svn-id: svn://localhost/ardour2/branches/3.0@8734 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/processor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/ardour/processor.cc') 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) -- cgit v1.2.3