diff options
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; } } |