From: Sampo Savolainen Date: Thu, 29 Oct 2009 17:56:05 +0000 (+0000) Subject: PluginInfo::type added to copy constructor. But why is the copy constructor defined... X-Git-Tag: 2.8.16~672 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=5a3a2fad4fd1c217a5771caa64efe92a0b305275;p=ardour.git PluginInfo::type added to copy constructor. But why is the copy constructor defined at all? git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@5971 d708f5d6-7413-0410-9779-e7cbd77b26cf --- diff --git a/libs/ardour/ardour/plugin.h b/libs/ardour/ardour/plugin.h index c983afd4fe..5d1772029b 100644 --- a/libs/ardour/ardour/plugin.h +++ b/libs/ardour/ardour/plugin.h @@ -59,6 +59,7 @@ class PluginInfo { path (o.path), n_inputs(o.n_inputs), n_outputs(o.n_outputs), + type(o.type), unique_id(o.unique_id), index(o.index) {} virtual ~PluginInfo () { }