summaryrefslogtreecommitdiffstats
path: root/src/engine/ConnectionImpl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-25 02:11:22 +0000
committerDavid Robillard <d@drobilla.net>2010-12-25 02:11:22 +0000
commit70ae08dce381a848d03c40741c56c5117918b832 (patch)
treef13d082ecdda11de74b4a25a0c1fe50908fc58e4 /src/engine/ConnectionImpl.cpp
parenta9c6a95eda8e730f7f1bd603c6eec4ced09643dc (diff)
downloadingen-70ae08dce381a848d03c40741c56c5117918b832.tar.gz
ingen-70ae08dce381a848d03c40741c56c5117918b832.tar.bz2
ingen-70ae08dce381a848d03c40741c56c5117918b832.zip
Remove useless templatification of RingBuffer.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2783 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/ConnectionImpl.cpp')
-rw-r--r--src/engine/ConnectionImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/ConnectionImpl.cpp b/src/engine/ConnectionImpl.cpp
index 40530694..a69a9e05 100644
--- a/src/engine/ConnectionImpl.cpp
+++ b/src/engine/ConnectionImpl.cpp
@@ -56,7 +56,7 @@ ConnectionImpl::ConnectionImpl(BufferFactory& bufs, PortImpl* src_port, PortImpl
assert(src_port->path() != dst_port->path());
if (must_queue())
- _queue = new Raul::RingBuffer<LV2_Atom>(src_port->buffer_size() * 2);
+ _queue = new Raul::RingBuffer(src_port->buffer_size() * 2);
}