Skip to content

Commit 325b175

Browse files
committed
Remove useless references
1 parent cb4da62 commit 325b175

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
@@ -841,8 +841,8 @@ impl Pattern {
841841
false
842842
}
843843
AnyChar => true,
844-
AnyWithin(ref specifiers) => in_char_specifiers(&specifiers, c, options),
845-
AnyExcept(ref specifiers) => !in_char_specifiers(&specifiers, c, options),
844+
AnyWithin(ref specifiers) => in_char_specifiers(specifiers, c, options),
845+
AnyExcept(ref specifiers) => !in_char_specifiers(specifiers, c, options),
846846
Char(c2) => chars_eq(c, c2, options.case_sensitive),
847847
AnySequence | AnyRecursiveSequence => unreachable!(),
848848
} {

0 commit comments

Comments
 (0)