Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 5021928

Browse files
committed
Move use statements around
1 parent b2f121c commit 5021928

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/bootstrap/lib.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,15 @@ use channel::GitInfo;
3737
use config::{DryRun, Target};
3838

3939
use crate::builder::Kind;
40-
pub use crate::builder::PathSet;
4140
use crate::cache::{Interned, INTERNER};
42-
pub use crate::config::Config;
4341
use crate::config::{LlvmLibunwind, TargetSelection};
4442
use crate::exec::{BehaviorOnFailure, BootstrapCommand, OutputMode};
45-
pub use crate::flags::Subcommand;
4643
use crate::util::{dir_is_empty, exe, libdir, mtime, output, symlink_dir};
4744

45+
pub use crate::builder::PathSet;
46+
pub use crate::config::Config;
47+
pub use crate::flags::Subcommand;
48+
4849
mod builder;
4950
mod cache;
5051
mod cc_detect;

0 commit comments

Comments
 (0)