aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_fsb.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-08-11 18:52:20 +0200
committerDavid Robillard <d@drobilla.net>2018-09-29 14:46:19 +0200
commit9ea2c312d7641e60f8955067b2c301151dad5403 (patch)
tree36521da9d3f5e421ee8bbc4f34cfeb6e421e6b3e /test/test_fsb.cpp
parent59a618492e083291f50ac47cf2adc88dac33b6ce (diff)
downloadchilbert-9ea2c312d7641e60f8955067b2c301151dad5403.tar.gz
chilbert-9ea2c312d7641e60f8955067b2c301151dad5403.tar.bz2
chilbert-9ea2c312d7641e60f8955067b2c301151dad5403.zip
Rename fsb() to find_first() to match boost::dynamic_bitset
Diffstat (limited to 'test/test_fsb.cpp')
-rw-r--r--test/test_fsb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_fsb.cpp b/test/test_fsb.cpp
index c55d9cb..b059394 100644
--- a/test/test_fsb.cpp
+++ b/test/test_fsb.cpp
@@ -32,7 +32,7 @@ test_fsb(const T& empty_field)
for (int i = 0; i < empty_field.size(); ++i) {
T field = empty_field;
field.set(i);
- assert(field.fsb() == i + 1);
+ assert(field.find_first() == i + 1);
}
return 0;