mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 01:00:05 +00:00
AK: Use default constructor of Optional if an unset bit is not found
This commit is contained in:
parent
4479e874da
commit
0433c0780d
Notes:
sideshowbarker
2024-07-19 08:49:46 +09:00
Author: https://github.com/supercomputer7
Commit: 0433c0780d
Pull-request: https://github.com/SerenityOS/serenity/pull/1366
Reviewed-by: https://github.com/awesomekling
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ public:
|
|||
if (!get(j))
|
||||
return j;
|
||||
|
||||
return -1;
|
||||
return {};
|
||||
}
|
||||
|
||||
Optional<size_t> find_longest_range_of_unset_bits(size_t max_length, size_t& found_range_size) const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue