Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
Fix (#583)
Browse files Browse the repository at this point in the history
  • Loading branch information
MBkkt committed Dec 21, 2023
1 parent f2dcbb3 commit fab8ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/utils/wildcard_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ WildcardType ComputeWildcardType(bytes_view pattern) noexcept {
auto prev_any_str = std::exchange(curr_any_str, 0);
if (escaped) {
escaped = false;
seen_escaped = true;
continue;
}
switch (*it) {
Expand All @@ -74,6 +73,7 @@ WildcardType ComputeWildcardType(bytes_view pattern) noexcept {
return WildcardType::kWildcard;
case WildcardMatch::kEscape:
escaped = true;
seen_escaped = true;
break;
default:
break;
Expand Down

0 comments on commit fab8ee2

Please sign in to comment.