1
Fork 0

Make some modules non-pub.

- drop_flag_effects: `pub` items within are all re-exported in `lib.rs`.
- un_derefer: doesn't contain any `pub` items.
This commit is contained in:
Nicholas Nethercote 2024-11-25 15:38:54 +11:00
parent e3ef2ff05f
commit a602cb666a

View file

@ -25,7 +25,7 @@ pub use self::framework::{
use self::move_paths::MoveData; use self::move_paths::MoveData;
pub mod debuginfo; pub mod debuginfo;
pub mod drop_flag_effects; mod drop_flag_effects;
pub mod elaborate_drops; pub mod elaborate_drops;
mod errors; mod errors;
mod framework; mod framework;
@ -33,7 +33,7 @@ pub mod impls;
pub mod move_paths; pub mod move_paths;
pub mod points; pub mod points;
pub mod rustc_peek; pub mod rustc_peek;
pub mod un_derefer; mod un_derefer;
pub mod value_analysis; pub mod value_analysis;
rustc_fluent_macro::fluent_messages! { "../messages.ftl" } rustc_fluent_macro::fluent_messages! { "../messages.ftl" }