remove feature attributes for stable stuff

pull/1/head
edef 2016-03-16 00:14:09 +01:00
parent bc46941e89
commit bb2b92bf6b
3 changed files with 1 additions and 4 deletions

View File

@ -7,7 +7,6 @@ use super::common::{push, rust_trampoline};
pub const STACK_ALIGN: usize = 16; pub const STACK_ALIGN: usize = 16;
#[allow(raw_pointer_derive)]
#[derive(Debug)] #[derive(Debug)]
pub struct Registers { pub struct Registers {
rsp: *mut usize rsp: *mut usize

View File

@ -1,8 +1,7 @@
// This file is part of libfringe, a low-level green threading library. // This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu> // Copyright (c) 2015, edef <edef@edef.eu>
// See the LICENSE file included in this distribution. // See the LICENSE file included in this distribution.
#![feature(no_std)] #![feature(asm)]
#![feature(asm, core)]
#![no_std] #![no_std]
//! libfringe is a low-level green threading library. //! libfringe is a low-level green threading library.

View File

@ -11,7 +11,6 @@ mod sys;
/// anonymous memory mapping facility, usually `mmap`. /// anonymous memory mapping facility, usually `mmap`.
/// The stack it provides comes with a guard page, which is not included /// The stack it provides comes with a guard page, which is not included
/// in the stack limit. /// in the stack limit.
#[allow(raw_pointer_derive)]
#[derive(Debug)] #[derive(Debug)]
pub struct Stack { pub struct Stack {
ptr: *mut u8, ptr: *mut u8,