diff options
author | David Robillard <d@drobilla.net> | 2009-06-03 03:05:06 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-06-03 03:05:06 +0000 |
commit | ebbfd9e3cc38106843962bfd56ed6d7f699a59dc (patch) | |
tree | ba50c87fb5eb138c621b01e2399ece1968956c30 /src/shared | |
parent | 6488ffb1a3fedb87b41add3a2a78a953755c949a (diff) | |
download | ingen-ebbfd9e3cc38106843962bfd56ed6d7f699a59dc.tar.gz ingen-ebbfd9e3cc38106843962bfd56ed6d7f699a59dc.tar.bz2 ingen-ebbfd9e3cc38106843962bfd56ed6d7f699a59dc.zip |
Clean up input port mixdown code.
Make input port connections private, and ensure only touched from the process thread.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2076 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/ResourceImpl.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/shared/ResourceImpl.cpp b/src/shared/ResourceImpl.cpp index ece81b09..ac828f58 100644 --- a/src/shared/ResourceImpl.cpp +++ b/src/shared/ResourceImpl.cpp @@ -86,7 +86,6 @@ ResourceImpl::type( for (iterator i = types_range.first; i != types_range.second; ++i) { const Atom& atom = i->second; if (atom.type() == Atom::URI) { - cerr << "TYPE: " << atom.get_uri() << endl; if (!strncmp(atom.get_uri(), "ingen:", 6)) { const char* suffix = atom.get_uri() + 6; if (!strcmp(suffix, "Patch")) { |