File tree Expand file tree Collapse file tree 6 files changed +0
-14
lines changed
programs/address-lookup-table/src Expand file tree Collapse file tree 6 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,6 @@ fn main() {
1717 }
1818 Channel :: Dev => {
1919 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" ) ;
2520 }
2621 }
2722}
Original file line number Diff line number Diff line change 11#![ allow( incomplete_features) ]
22#![ cfg_attr( RUSTC_WITH_SPECIALIZATION , feature( specialization) ) ]
3- #![ cfg_attr( RUSTC_NEEDS_PROC_MACRO_HYGIENE , feature( proc_macro_hygiene) ) ]
43
54// Allows macro expansion of `use ::solana_frozen_abi::*` to work within this crate
65extern crate self as solana_frozen_abi;
Original file line number Diff line number Diff line change @@ -27,11 +27,6 @@ fn main() {
2727 }
2828 Channel :: Dev => {
2929 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" ) ;
3530 }
3631 }
3732}
Original file line number Diff line number Diff line change 11#![ allow( incomplete_features) ]
22#![ cfg_attr( RUSTC_WITH_SPECIALIZATION , feature( specialization) ) ]
3- #![ cfg_attr( RUSTC_NEEDS_PROC_MACRO_HYGIENE , feature( proc_macro_hygiene) ) ]
43
54#[ cfg( not( target_os = "solana" ) ) ]
65pub mod processor;
Original file line number Diff line number Diff line change 465465
466466#![ allow( incomplete_features) ]
467467#![ cfg_attr( RUSTC_WITH_SPECIALIZATION , feature( specialization) ) ]
468- #![ cfg_attr( RUSTC_NEEDS_PROC_MACRO_HYGIENE , feature( proc_macro_hygiene) ) ]
469468
470469// Allows macro expansion of `use ::solana_program::*` to work within this crate
471470extern crate self as solana_program;
Original file line number Diff line number Diff line change 3131
3232#![ allow( incomplete_features) ]
3333#![ cfg_attr( RUSTC_WITH_SPECIALIZATION , feature( specialization) ) ]
34- #![ cfg_attr( RUSTC_NEEDS_PROC_MACRO_HYGIENE , feature( proc_macro_hygiene) ) ]
3534
3635// Allows macro expansion of `use ::solana_sdk::*` to work within this crate
3736extern crate self as solana_sdk;
You can’t perform that action at this time.
0 commit comments