Skip to content

Commit 98ad126

Browse files
committedFeb 4, 2024
Try to fix in-tree build
1 parent 468f400 commit 98ad126

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎src/tools/rust-analyzer/crates/hir-ty/src/layout/target.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
use base_db::CrateId;
44
use hir_def::layout::TargetDataLayout;
5-
use ra_ap_rustc_abi::{AlignFromBytesError, TargetDataLayoutErrors};
5+
use rustc_abi::{AlignFromBytesError, TargetDataLayoutErrors};
66
use triomphe::Arc;
77

88
use crate::db::HirDatabase;

‎src/tools/rust-analyzer/crates/hir-ty/src/mir/eval.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use hir_def::{
1717
use hir_expand::{mod_path::ModPath, HirFileIdExt, InFile};
1818
use intern::Interned;
1919
use la_arena::ArenaMap;
20-
use ra_ap_rustc_abi::TargetDataLayout;
20+
use rustc_abi::TargetDataLayout;
2121
use rustc_hash::{FxHashMap, FxHashSet};
2222
use stdx::never;
2323
use syntax::{SyntaxNodePtr, TextRange};

‎src/tools/rust-analyzer/crates/hir-ty/src/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use hir_def::{
2424
};
2525
use hir_expand::name::Name;
2626
use intern::Interned;
27-
use ra_ap_rustc_abi::TargetDataLayout;
27+
use rustc_abi::TargetDataLayout;
2828
use rustc_hash::FxHashSet;
2929
use smallvec::{smallvec, SmallVec};
3030
use stdx::never;

0 commit comments

Comments
 (0)
Please sign in to comment.