about summary refs log tree commit diff
path: root/compiler/rustc_trait_selection/src/traits/mod.rs
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2023-07-12 21:38:55 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2023-07-12 21:38:55 -0400
commit67b0cfc761c9ad31a1dbacca36c42803b255f17a (patch)
treea4674d84c64a62f308cbc98d4bcb8d21f5ae29d1 /compiler/rustc_trait_selection/src/traits/mod.rs
parent7559d96be9e6af26aa7e241ae1e98d277fb8b328 (diff)
downloadrust-67b0cfc761c9ad31a1dbacca36c42803b255f17a.tar.gz
rust-67b0cfc761c9ad31a1dbacca36c42803b255f17a.zip
Flip cfg's for bootstrap bump
Diffstat (limited to 'compiler/rustc_trait_selection/src/traits/mod.rs')
-rw-r--r--compiler/rustc_trait_selection/src/traits/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/mod.rs b/compiler/rustc_trait_selection/src/traits/mod.rs
index 1af8323b6e9..bc136695442 100644
--- a/compiler/rustc_trait_selection/src/traits/mod.rs
+++ b/compiler/rustc_trait_selection/src/traits/mod.rs
@@ -13,12 +13,12 @@ mod object_safety;
 pub mod outlives_bounds;
 pub mod project;
 pub mod query;
-#[cfg_attr(not(bootstrap), allow(hidden_glob_reexports))]
+#[allow(hidden_glob_reexports)]
 mod select;
 mod specialize;
 mod structural_match;
 mod structural_normalize;
-#[cfg_attr(not(bootstrap), allow(hidden_glob_reexports))]
+#[allow(hidden_glob_reexports)]
 mod util;
 pub mod vtable;
 pub mod wf;