Skip to content

Commit c82ec8a

Browse files
committed
After-rebase fixes
1 parent c923fc2 commit c82ec8a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

compiler/rustc_hir/src/definitions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::hash::Hash;
99

1010
use rustc_data_structures::fx::FxHashMap;
1111
use rustc_data_structures::indexmap::IndexSet;
12-
use rustc_data_structures::stable_hasher::StableHasher;
12+
use rustc_data_structures::stable_hash::StableHasher;
1313
use rustc_hashes::Hash64;
1414
use rustc_index::IndexVec;
1515
use rustc_macros::{BlobDecodable, Decodable, Encodable, extension};

compiler/rustc_middle/src/ty/context.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ use std::cmp::Ordering;
1010
use std::env::VarError;
1111
use std::ffi::OsStr;
1212
use std::hash::{Hash, Hasher};
13-
use std::marker::{PhantomData, PointeeSized};
14-
use std::ops::{Bound, Deref};
13+
use std::marker::PointeeSized;
14+
use std::ops::Deref;
1515
use std::sync::atomic::{AtomicBool, Ordering as AtomicOrdering};
1616
use std::sync::{Arc, OnceLock};
1717
use std::{fmt, iter, mem};

0 commit comments

Comments
 (0)