Skip to content

Commit a602cb6

Browse files
committed
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.
1 parent e3ef2ff commit a602cb6

File tree

1 file changed

+2
-2
lines changed
  • compiler/rustc_mir_dataflow/src

1 file changed

+2
-2
lines changed

compiler/rustc_mir_dataflow/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ pub use self::framework::{
2525
use self::move_paths::MoveData;
2626

2727
pub mod debuginfo;
28-
pub mod drop_flag_effects;
28+
mod drop_flag_effects;
2929
pub mod elaborate_drops;
3030
mod errors;
3131
mod framework;
3232
pub mod impls;
3333
pub mod move_paths;
3434
pub mod points;
3535
pub mod rustc_peek;
36-
pub mod un_derefer;
36+
mod un_derefer;
3737
pub mod value_analysis;
3838

3939
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }

0 commit comments

Comments
 (0)