Skip to content

Commit a80c98b

Browse files
committed
Remove useless references
1 parent 78203cc commit a80c98b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,8 +790,8 @@ impl Pattern {
790790
false
791791
}
792792
AnyChar => true,
793-
AnyWithin(ref specifiers) => in_char_specifiers(&specifiers, c, options),
794-
AnyExcept(ref specifiers) => !in_char_specifiers(&specifiers, c, options),
793+
AnyWithin(ref specifiers) => in_char_specifiers(specifiers, c, options),
794+
AnyExcept(ref specifiers) => !in_char_specifiers(specifiers, c, options),
795795
Char(c2) => chars_eq(c, c2, options.case_sensitive),
796796
AnySequence | AnyRecursiveSequence => unreachable!(),
797797
} {

0 commit comments

Comments
 (0)