Skip to content
Snippets Groups Projects
Commit 86716b86 authored by Markus Blatt's avatar Markus Blatt
Browse files

print size, too.

[[Imported from SVN: r1068]]
parent 596fc11e
No related branches found
No related tags found
No related merge requests found
......@@ -516,10 +516,10 @@ namespace std
os<<i->first<<": [ source=[";
for(std::size_t j=0; j < i->second.first.size(); ++j)
os<<i->second.first[j]<<" ";
os<<"] , target=[";
os<<"] size="<<i->second.first.size()<<", target=[";
for(std::size_t j=0; j < i->second.second.size(); ++j)
os<<i->second.second[j]<<" ";
os<<"]\n";
os<<"] size="<<i->second.second.size()<<"\n";
}
return os;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment