mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 07:36:50 +00:00
LibRegex: Add some implied auto qualifiers
This commit is contained in:
committed by
Brian Gianforcaro
parent
1fdd1915c2
commit
b674de6957
@@ -502,7 +502,7 @@ ALWAYS_INLINE ExecutionResult OpCode_Compare::execute(MatchInput const& input, M
|
||||
|
||||
auto ch = input.view.substring_view(state.string_position, 1)[0];
|
||||
|
||||
auto matching_range = binary_search(range_data, ch, nullptr, [insensitive = input.regex_options & AllFlags::Insensitive](auto needle, CharRange range) {
|
||||
auto const* matching_range = binary_search(range_data, ch, nullptr, [insensitive = input.regex_options & AllFlags::Insensitive](auto needle, CharRange range) {
|
||||
auto from = range.from;
|
||||
auto to = range.to;
|
||||
if (insensitive) {
|
||||
|
||||
Reference in New Issue
Block a user