From d38458e73cf7dfe02d2ea0ceb050f64df43413b8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 16 Oct 2006 07:28:30 +0000 Subject: Used boost::noncopyable to eliminate undefined private copy constructors spread everywhere. git-svn-id: http://svn.drobilla.net/lad/ingen@182 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/OutputPort.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/libs/engine/OutputPort.h') diff --git a/src/libs/engine/OutputPort.h b/src/libs/engine/OutputPort.h index bd3ae999..e38aa822 100644 --- a/src/libs/engine/OutputPort.h +++ b/src/libs/engine/OutputPort.h @@ -52,11 +52,6 @@ public: bool is_input() const { return false; } bool is_output() const { return true; } - -private: - // Prevent copies (undefined) - OutputPort(const OutputPort& copy); - OutputPort& operator=(const OutputPort&); }; -- cgit v1.2.1