Skip to content

Commit

Permalink
Make some modules non-pub.
Browse files Browse the repository at this point in the history
- drop_flag_effects: `pub` items within are all re-exported in `lib.rs`.
- un_derefer: doesn't contain any `pub` items.
  • Loading branch information
nnethercote committed Nov 26, 2024
1 parent e3ef2ff commit a602cb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/rustc_mir_dataflow/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ pub use self::framework::{
use self::move_paths::MoveData;

pub mod debuginfo;
pub mod drop_flag_effects;
mod drop_flag_effects;
pub mod elaborate_drops;
mod errors;
mod framework;
pub mod impls;
pub mod move_paths;
pub mod points;
pub mod rustc_peek;
pub mod un_derefer;
mod un_derefer;
pub mod value_analysis;

rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
Expand Down

0 comments on commit a602cb6

Please sign in to comment.