graph: discard the no longer necessary operator!=

This commit is contained in:
skypjack
2026-01-08 11:31:19 +01:00
parent d5aa3973db
commit 16a8c25bd6

View File

@@ -79,11 +79,6 @@ template<typename Container>
return lhs.pos == rhs.pos;
}
template<typename Container>
[[nodiscard]] constexpr bool operator!=(const edge_iterator<Container> &lhs, const edge_iterator<Container> &rhs) noexcept {
return !(lhs == rhs);
}
} // namespace internal
/*! @endcond */