AK: Use default constructor of Optional if an unset bit is not found

This commit is contained in:
Liav A 2020-03-08 13:58:22 +02:00 committed by Andreas Kling
parent 4479e874da
commit 0433c0780d

View file

@ -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