summaryrefslogtreecommitdiffstats
path: root/src/libs/shared/ClashAvoider.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/shared/ClashAvoider.cpp')
-rw-r--r--src/libs/shared/ClashAvoider.cpp2
1 files changed, 0 insertions, 2 deletions
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;
}
}