mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:18:13 +00:00
LibRegex: Add some implied auto qualifiers
This commit is contained in:
parent
1fdd1915c2
commit
b674de6957
4 changed files with 10 additions and 10 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue