Commit b6f6fdb 1 parent 3cf4834 commit b6f6fdb Copy full SHA for b6f6fdb
File tree 6 files changed +0
-14
lines changed
programs/address-lookup-table/src
6 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,6 @@ fn main() {
17
17
}
18
18
Channel :: Dev => {
19
19
println ! ( "cargo:rustc-cfg=RUSTC_WITH_SPECIALIZATION" ) ;
20
- // See https://github.com/solana-labs/solana/issues/11055
21
- // We may be running the custom `rust-bpf-builder` toolchain,
22
- // which currently needs `#![feature(proc_macro_hygiene)]` to
23
- // be applied.
24
- println ! ( "cargo:rustc-cfg=RUSTC_NEEDS_PROC_MACRO_HYGIENE" ) ;
25
20
}
26
21
}
27
22
}
Original file line number Diff line number Diff line change 1
1
#![ allow( incomplete_features) ]
2
2
#![ cfg_attr( RUSTC_WITH_SPECIALIZATION , feature( specialization) ) ]
3
- #![ cfg_attr( RUSTC_NEEDS_PROC_MACRO_HYGIENE , feature( proc_macro_hygiene) ) ]
4
3
5
4
// Allows macro expansion of `use ::solana_frozen_abi::*` to work within this crate
6
5
extern crate self as solana_frozen_abi;
Original file line number Diff line number Diff line change @@ -27,11 +27,6 @@ fn main() {
27
27
}
28
28
Channel :: Dev => {
29
29
println ! ( "cargo:rustc-cfg=RUSTC_WITH_SPECIALIZATION" ) ;
30
- // See https://github.com/solana-labs/solana/issues/11055
31
- // We may be running the custom `rust-bpf-builder` toolchain,
32
- // which currently needs `#![feature(proc_macro_hygiene)]` to
33
- // be applied.
34
- println ! ( "cargo:rustc-cfg=RUSTC_NEEDS_PROC_MACRO_HYGIENE" ) ;
35
30
}
36
31
}
37
32
}
Original file line number Diff line number Diff line change 1
1
#![ allow( incomplete_features) ]
2
2
#![ cfg_attr( RUSTC_WITH_SPECIALIZATION , feature( specialization) ) ]
3
- #![ cfg_attr( RUSTC_NEEDS_PROC_MACRO_HYGIENE , feature( proc_macro_hygiene) ) ]
4
3
5
4
#[ cfg( not( target_os = "solana" ) ) ]
6
5
pub mod processor;
Original file line number Diff line number Diff line change 465
465
466
466
#![ allow( incomplete_features) ]
467
467
#![ cfg_attr( RUSTC_WITH_SPECIALIZATION , feature( specialization) ) ]
468
- #![ cfg_attr( RUSTC_NEEDS_PROC_MACRO_HYGIENE , feature( proc_macro_hygiene) ) ]
469
468
470
469
// Allows macro expansion of `use ::solana_program::*` to work within this crate
471
470
extern crate self as solana_program;
Original file line number Diff line number Diff line change 31
31
32
32
#![ allow( incomplete_features) ]
33
33
#![ cfg_attr( RUSTC_WITH_SPECIALIZATION , feature( specialization) ) ]
34
- #![ cfg_attr( RUSTC_NEEDS_PROC_MACRO_HYGIENE , feature( proc_macro_hygiene) ) ]
35
34
36
35
// Allows macro expansion of `use ::solana_sdk::*` to work within this crate
37
36
extern crate self as solana_sdk;
You can’t perform that action at this time.
0 commit comments