mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #13090 from mitaclaw/ranges-modernization-1-trivial
Ranges Algorithms Modernization - Trivial
This commit is contained in:
@ -53,8 +53,7 @@ struct TwoPointCalibration
|
||||
}
|
||||
else
|
||||
{
|
||||
return std::equal(std::begin(max.data), std::end(max.data), std::begin(zero.data),
|
||||
std::not_equal_to<>());
|
||||
return std::ranges::equal(max.data, zero.data, std::ranges::not_equal_to{});
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user