File tree 2 files changed +1
-4
lines changed
compiler/rustc_middle/src
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ macro_rules! span_bug {
41
41
// When possible, use one of these (relatively) convenient macros to write
42
42
// the impls for you.
43
43
44
- #[ macro_export]
45
44
macro_rules! TrivialLiftImpls {
46
45
( $( $ty: ty) ,+ $( , ) ?) => {
47
46
$(
@@ -57,7 +56,6 @@ macro_rules! TrivialLiftImpls {
57
56
58
57
/// Used for types that are `Copy` and which **do not care about arena
59
58
/// allocated data** (i.e., don't need to be folded).
60
- #[ macro_export]
61
59
macro_rules! TrivialTypeTraversalImpls {
62
60
( $( $ty: ty) ,+ $( , ) ?) => {
63
61
$(
@@ -92,7 +90,6 @@ macro_rules! TrivialTypeTraversalImpls {
92
90
} ;
93
91
}
94
92
95
- #[ macro_export]
96
93
macro_rules! TrivialTypeTraversalAndLiftImpls {
97
94
( $( $t: tt) * ) => {
98
95
TrivialTypeTraversalImpls ! { $( $t) * }
Original file line number Diff line number Diff line change @@ -428,7 +428,7 @@ pub enum IsConstable {
428
428
Ctor ,
429
429
}
430
430
431
- crate :: TrivialTypeTraversalAndLiftImpls ! {
431
+ TrivialTypeTraversalAndLiftImpls ! {
432
432
IsConstable ,
433
433
}
434
434
You can’t perform that action at this time.
0 commit comments