Not sure what I was thinking, but the argument here should clearly
be uint64_t.
Fixes: https://github.com/Zygo/bees/issues/248
Signed-off-by: Zygo Blaxell <bees@furryterror.org>
static
void
-seeker_test(const vector<uint64_t> &vec, size_t target)
+seeker_test(const vector<uint64_t> &vec, uint64_t const target)
{
cerr << "Find " << target << " in {";
for (auto i : vec) {
return seeker_finder(vec, lower, upper);
});
cerr << found;
- size_t my_found = 0;
+ uint64_t my_found = 0;
for (auto i : vec) {
if (i <= target) {
my_found = i;