summaryrefslogtreecommitdiffstats
path: root/src/server/ConnectionImpl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-28 01:10:26 +0000
committerDavid Robillard <d@drobilla.net>2012-04-28 01:10:26 +0000
commit70f4bcdde45e94dbe27300a5069994aebc523cab (patch)
tree049b88a7adfb4c11d4fb3643024422ce8b20ab32 /src/server/ConnectionImpl.cpp
parentb08a8a15fd136ab8323e282484a5a96d698dc808 (diff)
downloadingen-70f4bcdde45e94dbe27300a5069994aebc523cab.tar.gz
ingen-70f4bcdde45e94dbe27300a5069994aebc523cab.tar.bz2
ingen-70f4bcdde45e94dbe27300a5069994aebc523cab.zip
Remove using declarations from headers.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4288 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/ConnectionImpl.cpp')
-rw-r--r--src/server/ConnectionImpl.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/server/ConnectionImpl.cpp b/src/server/ConnectionImpl.cpp
index 2b6a0255..b53f00fe 100644
--- a/src/server/ConnectionImpl.cpp
+++ b/src/server/ConnectionImpl.cpp
@@ -61,10 +61,11 @@ ConnectionImpl::ConnectionImpl(PortImpl* src_port, PortImpl* dst_port)
void
ConnectionImpl::dump() const
{
- debug << _src_port->path() << " -> " << _dst_port->path()
- << (must_mix() ? " (MIX) " : " (DIRECT) ")
- << (must_queue() ? " (QUEUE)" : " (NOQUEUE) ")
- << "POLY: " << _src_port->poly() << " => " << _dst_port->poly() << endl;
+ Raul::debug << _src_port->path() << " -> " << _dst_port->path()
+ << (must_mix() ? " (MIX) " : " (DIRECT) ")
+ << (must_queue() ? " (QUEUE)" : " (NOQUEUE) ")
+ << "POLY: " << _src_port->poly() << " => " << _dst_port->poly()
+ << std::endl;
}
const Raul::Path&
@@ -115,7 +116,7 @@ ConnectionImpl::queue(Context& context)
boost::intrusive_ptr<Buffer> src_buf = _src_port->buffer(0);
if (src_buf->atom()->type != uris.atom_Sequence) {
- error << "Queued connection but source is not a Sequence" << endl;
+ Raul::error << "Queued connection but source is not a Sequence" << std::endl;
return;
}