mirror of
https://github.com/boostorg/container.git
synced 2026-07-06 17:10:46 +02:00
Fixed unrolling bug in segmented_count_if
This commit is contained in:
@@ -59,7 +59,7 @@ segmented_count_if_dispatch
|
||||
count += static_cast<difference_type>(pred(*first)); ++first;
|
||||
BOOST_FALLTHROUGH;
|
||||
case 1:
|
||||
count += static_cast<difference_type>(pred(*first));
|
||||
count += static_cast<difference_type>(pred(*first)); ++first;
|
||||
BOOST_FALLTHROUGH;
|
||||
default:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user