mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:07:45 +00:00
AK: Add nodiscard
attribute to BinarySearch functions
This commit is contained in:
parent
ccbf240962
commit
84d9e537cd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue