Skip to content

Commit 16e9713

Browse files
committed
Tweak use items.
1 parent 1bcb600 commit 16e9713

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

compiler/rustc_span/src/hygiene.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,13 @@
2424
// because getting it wrong can lead to nested `HygieneData::with` calls that
2525
// trigger runtime aborts. (Fortunately these are obvious and easy to fix.)
2626

27+
use crate::def_id::{CrateNum, DefId, StableCrateId, CRATE_DEF_ID, LOCAL_CRATE};
2728
use crate::edition::Edition;
2829
use crate::symbol::{kw, sym, Symbol};
29-
use crate::with_session_globals;
30-
use crate::{HashStableContext, Span, DUMMY_SP};
31-
32-
use crate::def_id::{CrateNum, DefId, StableCrateId, CRATE_DEF_ID, LOCAL_CRATE};
30+
use crate::{with_session_globals, HashStableContext, Span, DUMMY_SP};
3331
use rustc_data_structures::fingerprint::Fingerprint;
3432
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
35-
use rustc_data_structures::stable_hasher::HashingControls;
36-
use rustc_data_structures::stable_hasher::{Hash64, HashStable, StableHasher};
33+
use rustc_data_structures::stable_hasher::{Hash64, HashStable, HashingControls, StableHasher};
3734
use rustc_data_structures::sync::{Lock, Lrc, WorkerLocal};
3835
use rustc_data_structures::unhash::UnhashMap;
3936
use rustc_index::IndexVec;

0 commit comments

Comments
 (0)