Skip to content

Commit 090df7a

Browse files
committed
Auto merge of rust-lang#11678 - slinkydeveloper:master, r=Alexendoo
Now `declare_interior_mutable_const` and `borrow_interior_mutable_const` respect the `ignore-interior-mutability` configuration entry Fix rust-lang#10537 changelog: Now `declare_interior_mutable_const` and `borrow_interior_mutable_const` respect the `ignore-interior-mutability` configuration entry
2 parents e230f19 + 3960bc0 commit 090df7a

File tree

6 files changed

+270
-133
lines changed

6 files changed

+270
-133
lines changed

clippy_lints/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,8 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
750750
suppress_restriction_lint_in_const,
751751
))
752752
});
753-
store.register_late_pass(|_| Box::new(non_copy_const::NonCopyConst));
753+
let ignore_interior_mutability = conf.ignore_interior_mutability.clone();
754+
store.register_late_pass(move |_| Box::new(non_copy_const::NonCopyConst::new(ignore_interior_mutability.clone())));
754755
store.register_late_pass(|_| Box::new(ptr_offset_with_cast::PtrOffsetWithCast));
755756
store.register_late_pass(|_| Box::new(redundant_clone::RedundantClone));
756757
store.register_late_pass(|_| Box::new(slow_vector_initialization::SlowVectorInit));

0 commit comments

Comments
 (0)