map and set fix

This commit is contained in:
2022-08-01 19:07:23 +03:00
parent b1e220e454
commit ab7769dd5a
2 changed files with 6 additions and 6 deletions

View File

@@ -369,7 +369,7 @@ inline std::ostream & operator <<(std::ostream & s, const PIMap<Key, Type> & v)
if (!first)
s << ", ";
first = false;
s << i->first << ": " << i->second;
s << i.key() << ": " << i.value();
}
s << "}";
return s;