forked from M-Labs/libfringe
get rid of some minor warnings
This commit is contained in:
parent
5512cf8cb7
commit
2b23083455
|
@ -4,7 +4,7 @@
|
|||
#![feature(test)]
|
||||
extern crate test;
|
||||
extern crate fringe;
|
||||
use fringe::{Context, Stack};
|
||||
use fringe::Context;
|
||||
|
||||
static mut ctx_slot: *mut Context<'static, SliceStack<'static>> = 0 as *mut Context<_>;
|
||||
static mut stack_buf: [u8; 1024] = [0; 1024];
|
||||
|
|
|
@ -8,7 +8,6 @@ use super::common::{push, rust_trampoline};
|
|||
|
||||
pub const STACK_ALIGN: usize = 16;
|
||||
|
||||
#[allow(raw_pointer_derive)]
|
||||
#[derive(Debug)]
|
||||
pub struct Registers {
|
||||
esp: *mut usize
|
||||
|
|
Loading…
Reference in New Issue