mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-22 14:23:44 -07:00
clang after type change
This commit is contained in:
parent
705b32e347
commit
99404c6913
1 changed files with 3 additions and 2 deletions
|
@ -136,8 +136,9 @@ Fishsanity::GetFishingPondLocations(FishsanityOptionsSource optionsSource) {
|
|||
}
|
||||
// NOTE: This only works because we can assume activeFish is already sorted; changes that break this assumption will
|
||||
// also break this
|
||||
FilterAndEraseFromPool(remainingFish,
|
||||
[&](RandomizerCheck loc) { return std::binary_search(activeFish.begin(), activeFish.end(), loc); });
|
||||
FilterAndEraseFromPool(remainingFish, [&](RandomizerCheck loc) {
|
||||
return std::binary_search(activeFish.begin(), activeFish.end(), loc);
|
||||
});
|
||||
|
||||
return std::make_pair(activeFish, remainingFish);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue