Skip to content

Commit 0e28309

Browse files
authored
Rollup merge of #144726 - jdonszelmann:move-attr-data-structures, r=lcnr
merge rustc_attr_data_structures into rustc_hir this move was discussed on zulip: [#t-compiler > attribute parsing rework @ 💬](https://rust-lang.zulipchat.com/#narrow/channel/131828-t-compiler/topic/attribute.20parsing.20rework/near/528530091) Many PRs in the attribute rework depend on this move.
2 parents 24268dd + 45f3ba6 commit 0e28309

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ extern crate tracing;
5757
extern crate rustc_abi;
5858
extern crate rustc_apfloat;
5959
extern crate rustc_ast;
60-
extern crate rustc_attr_data_structures;
6160
extern crate rustc_const_eval;
6261
extern crate rustc_data_structures;
6362
extern crate rustc_errors;

src/machine.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use rand::rngs::StdRng;
1212
use rand::{Rng, SeedableRng};
1313
use rustc_abi::{Align, ExternAbi, Size};
1414
use rustc_apfloat::{Float, FloatConvert};
15-
use rustc_attr_data_structures::InlineAttr;
15+
use rustc_hir::attrs::InlineAttr;
1616
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
1717
#[allow(unused)]
1818
use rustc_data_structures::static_assert_size;

0 commit comments

Comments
 (0)