diff options
Diffstat (limited to 'src/parse/regex/dfa.rs')
| -rw-r--r-- | src/parse/regex/dfa.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/regex/dfa.rs b/src/parse/regex/dfa.rs index db63953..35f726c 100644 --- a/src/parse/regex/dfa.rs +++ b/src/parse/regex/dfa.rs @@ -208,7 +208,7 @@ use state_set::StateSet; trait GoesTo { fn goes_to(&self, to: usize) -> bool; } -impl<'a> GoesTo for (&'a State, ByteRange) { +impl GoesTo for (&State, ByteRange) { fn goes_to(&self, target: usize) -> bool { let from = self.0; let ch = self.1; |
