summaryrefslogtreecommitdiffstats
path: root/src/server/ConnectionImpl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-10-06 22:59:17 +0000
committerDavid Robillard <d@drobilla.net>2011-10-06 22:59:17 +0000
commita42d55487c0f70313ebccb043c571c8097b20093 (patch)
treeb05456f6604ed31c0c439c0054967c3743045000 /src/server/ConnectionImpl.cpp
parentd3c0df029087b2c7c7f26a4365e85f8e500cc33e (diff)
downloadingen-a42d55487c0f70313ebccb043c571c8097b20093.tar.gz
ingen-a42d55487c0f70313ebccb043c571c8097b20093.tar.bz2
ingen-a42d55487c0f70313ebccb043c571c8097b20093.zip
Remove unused BufferFactory member of ConnectionImpl.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3534 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/ConnectionImpl.cpp')
-rw-r--r--src/server/ConnectionImpl.cpp7
1 files changed, 3 insertions, 4 deletions
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);