We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab88aa5 commit 92efe4aCopy full SHA for 92efe4a
regex-automata/src/dfa/onepass.rs
@@ -521,7 +521,7 @@ struct InternalBuilder<'a> {
521
522
impl<'a> InternalBuilder<'a> {
523
/// Create a new builder with an initial empty DFA.
524
- fn new(config: Config, nfa: &'a NFA) -> InternalBuilder {
+ fn new(config: Config, nfa: &'a NFA) -> InternalBuilder<'a> {
525
let classes = if !config.get_byte_classes() {
526
// A one-pass DFA will always use the equivalence class map, but
527
// enabling this option is useful for debugging. Namely, this will
0 commit comments