knownConditionTrueFalse fixes previously fp

This commit is contained in:
gtsoul-tech
2024-05-02 10:13:55 +03:00
parent 021bf6b8b4
commit 51ce67be3d
5 changed files with 14 additions and 32 deletions

View File

@@ -149,9 +149,7 @@ std::ostream &operator<<(std::ostream &os, const insertion_ordered_set<K> &s) {
os << "{";
for (auto it = begin(s); it != end(s); ++it) {
os << *it;
if (it != end(s)) {
os << ", ";
}
os << ", ";
}
os << "}";
return os;