about summary refs log tree commit diff
path: root/compiler/rustc_transmute/src/lib.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-10-06 10:16:54 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2023-10-06 10:16:54 +1100
commit80bf6883be9af0bee3e764a3cdc0ac73c0cc239a (patch)
tree95a5d8a9a1857d530f6434003973caabab8e263b /compiler/rustc_transmute/src/lib.rs
parentcae0791da47bb01f16885eb233dcd66b0093a6e1 (diff)
downloadrust-80bf6883be9af0bee3e764a3cdc0ac73c0cc239a.tar.gz
rust-80bf6883be9af0bee3e764a3cdc0ac73c0cc239a.zip
Remove an unnecessary `pub(crate)`.
Diffstat (limited to 'compiler/rustc_transmute/src/lib.rs')
-rw-r--r--compiler/rustc_transmute/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_transmute/src/lib.rs b/compiler/rustc_transmute/src/lib.rs
index 6c49e94dc31..e0109657c39 100644
--- a/compiler/rustc_transmute/src/lib.rs
+++ b/compiler/rustc_transmute/src/lib.rs
@@ -9,7 +9,7 @@ extern crate tracing;
 pub(crate) use rustc_data_structures::fx::{FxIndexMap as Map, FxIndexSet as Set};
 
 pub mod layout;
-pub(crate) mod maybe_transmutable;
+mod maybe_transmutable;
 
 #[derive(Default)]
 pub struct Assume {