We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c1b692 commit 6e3c9a2Copy full SHA for 6e3c9a2
include/boost/bloom/detail/core.hpp
@@ -470,10 +470,11 @@ class filter_core:empty_value<Allocator,0>
470
for(auto i=bulk_may_contain_size;i--;){
471
auto& hash=hashes[i];
472
auto& p=positions[i];
473
- f(get(p,hash));
+ auto res=get(p,hash);
474
hash=h();
475
hs.prepare_hash(hash);
476
p=next_element(hash);
477
+ f(res);
478
}
479
n-=bulk_may_contain_size;
480
}while(n>=2*bulk_may_contain_size);
@@ -515,10 +516,10 @@ class filter_core:empty_value<Allocator,0>
515
516
517
auto& res=results[i];
518
res&=get(p,hash);
- f(res);
519
520
521
522
523
res=true;
524
525
0 commit comments