Fix outdated comment

This commit is contained in:
2024-07-01 17:27:04 -07:00
parent bb84792cff
commit 01488880ef
+1 -1
View File
@@ -125,7 +125,7 @@ struct BitSet {
void reset(int i);
int firstSetGeq(int i) const;
// Calls `f` with the index of each bit set in [begin, end)
// Calls `f` with the index of each bit set
template <class F> void forEachSet(F f) const {
// See section 3.1 in https://arxiv.org/pdf/1709.07821.pdf for details about
// this approach