Skip to content

Commit 6fbf10f

Browse files
committed
fix build error 2
1 parent 4e7cc8d commit 6fbf10f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
906906
store.register_early_pass(|| Box::new(multi_assignments::MultiAssignments));
907907
store.register_late_pass(|_| Box::new(bool_to_int_with_if::BoolToIntWithIf));
908908
store.register_late_pass(|_| Box::new(box_default::BoxDefault));
909-
store.register_late_pass(|| Box::new(paths_from_format::PathsFromFormat));
909+
store.register_late_pass(|_| Box::new(paths_from_format::PathsFromFormat));
910910
// add lints here, do not remove this comment, it's used in `new_lint`
911911
}
912912

0 commit comments

Comments
 (0)