From a42d55487c0f70313ebccb043c571c8097b20093 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 6 Oct 2011 22:59:17 +0000 Subject: Remove unused BufferFactory member of ConnectionImpl. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3534 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/ConnectionImpl.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/server/ConnectionImpl.cpp') diff --git a/src/server/ConnectionImpl.cpp b/src/server/ConnectionImpl.cpp index 9bb0d4f5..006a157d 100644 --- a/src/server/ConnectionImpl.cpp +++ b/src/server/ConnectionImpl.cpp @@ -41,11 +41,10 @@ namespace Server { * This handles both polyphonic and monophonic nodes, transparently to the * user (InputPort). */ -ConnectionImpl::ConnectionImpl(BufferFactory& bufs, PortImpl* src_port, PortImpl* dst_port) - : _queue(NULL) - , _bufs(bufs) - , _src_port(src_port) +ConnectionImpl::ConnectionImpl(PortImpl* src_port, PortImpl* dst_port) + : _src_port(src_port) , _dst_port(dst_port) + , _queue(NULL) , _pending_disconnection(false) { assert(src_port); -- cgit v1.2.1