Fix uninitialized variable
[ardour.git] / gtk2_ardour / processor_selection.h
index fc3a133ef1ff993dd03eef3067dfdedfca616402..7de1c4735e2370a2f8fc6139aa89b6400009a6f4 100644 (file)
@@ -67,7 +67,6 @@ class ProcessorSelection : public PBD::ScopedConnectionList, public sigc::tracka
        XMLProcessorSelection processors;
        sigc::signal<void> ProcessorsChanged;
 
-       ProcessorSelection& operator= (const ProcessorSelection& other);
 
        void clear ();
        bool empty();
@@ -76,6 +75,10 @@ class ProcessorSelection : public PBD::ScopedConnectionList, public sigc::tracka
        void add (XMLNode* node);
 
        void clear_processors ();
+
+       private:
+       ProcessorSelection& operator= (const ProcessorSelection& other);
+       ProcessorSelection (ProcessorSelection const&);
 };
 
 bool operator==(const ProcessorSelection& a, const ProcessorSelection& b);