Restored some debug code to complete state

This commit is contained in:
Mael Rouxel-Labbé 2017-05-05 14:28:22 +02:00
parent 6ab93873ef
commit 868aea4089
1 changed files with 1 additions and 1 deletions

View File

@ -580,7 +580,7 @@ public:
void write(const Queue &q, std::ostream& out) const {
for (typename Queue::const_iterator it = q.begin(); it != q.end(); ++it) {
out << "(" << *it << ")";
out << "(" << &*it << ": " << *it << ")";
out << std::endl;
}
}