forked from M-Labs/libfringe
Remove workaround for rust-lang/rust#25544.
This commit is contained in:
parent
ca43ba0498
commit
23cf17865d
|
@ -2,17 +2,10 @@
|
||||||
// Copyright (c) edef <edef@edef.eu>,
|
// Copyright (c) edef <edef@edef.eu>,
|
||||||
// whitequark <whitequark@whitequark.org>
|
// whitequark <whitequark@whitequark.org>
|
||||||
// See the LICENSE file included in this distribution.
|
// See the LICENSE file included in this distribution.
|
||||||
|
|
||||||
pub use self::imp::*;
|
pub use self::imp::*;
|
||||||
|
|
||||||
// rust-lang/rust#25544
|
#[allow(unused_attributes)] // rust-lang/rust#35584
|
||||||
// #[cfg_attr(target_arch = "x86", path = "x86.rs")]
|
#[cfg_attr(target_arch = "x86", path = "x86.rs")]
|
||||||
// #[cfg_attr(target_arch = "x86_64", path = "x86_64.rs")]
|
#[cfg_attr(target_arch = "x86_64", path = "x86_64.rs")]
|
||||||
// mod imp;
|
|
||||||
|
|
||||||
#[cfg(target_arch = "x86")]
|
|
||||||
#[path = "x86.rs"]
|
|
||||||
mod imp;
|
|
||||||
|
|
||||||
#[cfg(target_arch = "x86_64")]
|
|
||||||
#[path = "x86_64.rs"]
|
|
||||||
mod imp;
|
mod imp;
|
||||||
|
|
Loading…
Reference in New Issue