From 77d608d6ca282795b348a615932b1abbd47b0472 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 17 Aug 2008 23:35:43 +0000 Subject: Copy/paste of patch ports. git-svn-id: http://svn.drobilla.net/lad/ingen@1427 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/shared/Builder.cpp | 2 -- src/libs/shared/ClashAvoider.cpp | 2 -- 2 files changed, 4 deletions(-) (limited to 'src/libs/shared') 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 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; } } -- cgit v1.2.1