diff options
author | David Robillard <d@drobilla.net> | 2008-08-17 23:35:43 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-08-17 23:35:43 +0000 |
commit | 77d608d6ca282795b348a615932b1abbd47b0472 (patch) | |
tree | bc714c316e0611ea5daa8c7f77a0cff2f57cab59 /src/libs/shared | |
parent | 14401d11e598651e7caf39cce884362e58ef5941 (diff) | |
download | ingen-77d608d6ca282795b348a615932b1abbd47b0472.tar.gz ingen-77d608d6ca282795b348a615932b1abbd47b0472.tar.bz2 ingen-77d608d6ca282795b348a615932b1abbd47b0472.zip |
Copy/paste of patch ports.
git-svn-id: http://svn.drobilla.net/lad/ingen@1427 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/shared')
-rw-r--r-- | src/libs/shared/Builder.cpp | 2 | ||||
-rw-r--r-- | src/libs/shared/ClashAvoider.cpp | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/libs/shared/Builder.cpp b/src/libs/shared/Builder.cpp index 2b5e954c..bc8fb21c 100644 --- a/src/libs/shared/Builder.cpp +++ b/src/libs/shared/Builder.cpp @@ -45,8 +45,6 @@ Builder::build(SharedPtr<const GraphObject> object) build_object(object); for (Patch::Connections::const_iterator i = patch->connections().begin(); i != patch->connections().end(); ++i) { - cout << "BUILDER CONNECTION: " <<(*i)->src_port_path() - << " -> " << (*i)->dst_port_path() << endl; _interface.connect((*i)->src_port_path(), (*i)->dst_port_path()); } return; diff --git a/src/libs/shared/ClashAvoider.cpp b/src/libs/shared/ClashAvoider.cpp index 3647f023..bd169d4b 100644 --- a/src/libs/shared/ClashAvoider.cpp +++ b/src/libs/shared/ClashAvoider.cpp @@ -38,7 +38,6 @@ ClashAvoider::map_path(const Raul::Path& in) // No clash, use symbol unmodified if (s == _store.end()) { InsertRecord i = _symbol_map.insert(make_pair(in, in)); - cout << i.first->second << endl; return i.first->second; } else { @@ -66,7 +65,6 @@ ClashAvoider::map_path(const Raul::Path& in) ss << in << "_" << offset; InsertRecord i = _symbol_map.insert(make_pair(in, ss.str())); assert(_store.find(i.first->second) == _store.end()); - cout << i.first->second << endl; return i.first->second; } } |