From 01488880ef65679ef6942f6aa434f7120e865989 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Mon, 1 Jul 2024 17:27:04 -0700 Subject: [PATCH] Fix outdated comment --- ConflictSet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConflictSet.cpp b/ConflictSet.cpp index c179d67..2943f48 100644 --- a/ConflictSet.cpp +++ b/ConflictSet.cpp @@ -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 void forEachSet(F f) const { // See section 3.1 in https://arxiv.org/pdf/1709.07821.pdf for details about // this approach