AK: Add nodiscard attribute to BinarySearch functions

This commit is contained in:
Lenny Maiorani 2022-06-26 10:20:38 -06:00 committed by Brian Gianforcaro
parent ccbf240962
commit 84d9e537cd

View file

@ -13,7 +13,7 @@ namespace AK {
struct DefaultComparator {
template<typename T, typename S>
constexpr int operator()(T& lhs, S& rhs)
[[nodiscard]] constexpr int operator()(T& lhs, S& rhs)
{
if (lhs > rhs)
return 1;