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:
parent
e3ef2ff05f
commit
a602cb666a
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ 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;
|
||||
|
@ -33,7 +33,7 @@ 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" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue