This commit is contained in:
Karsten Laux 2021-12-15 18:20:52 +01:00
parent 622bc3c2e8
commit 3e35d53e9e

View File

@ -27,7 +27,7 @@ public:
// compute [first; last( iterators for sub-range // compute [first; last( iterators for sub-range
std::size_t size = bucketSize + remains; std::size_t size = bucketSize + remains;
Iterator first = begin + offset; Iterator first = begin + offset;
Iterator last = first + size; Iterator last = begin + offset + size;
// add appropriate search job // add appropriate search job
jobList_.push_back(SearchJob<Iterator>(first, last, pattern)); jobList_.push_back(SearchJob<Iterator>(first, last, pattern));