aboutsummaryrefslogtreecommitdiffstats
path: root/chilbert/BigBitVec.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'chilbert/BigBitVec.hpp')
-rw-r--r--chilbert/BigBitVec.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/chilbert/BigBitVec.hpp b/chilbert/BigBitVec.hpp
index c395b05..1f97039 100644
--- a/chilbert/BigBitVec.hpp
+++ b/chilbert/BigBitVec.hpp
@@ -409,7 +409,7 @@ public:
}
/// Return 1 + the index of the first set bit, or 0 if there are none
- int fsb() const
+ int find_first() const
{
for (int i = 0; i < m_iRacks; ++i) {
const int j = ffs(m_pcRacks[i]);