1
0
mirror of https://github.com/bspeice/qadapt synced 2026-06-10 23:31:50 -04:00

First of edition fixing

This commit is contained in:
2018-12-06 22:12:21 -05:00
parent 5232c556ff
commit de2b6700ae
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
extern crate qadapt;
use qadapt::allocate_panic;
use qadapt::QADAPT;
+2 -2
View File
@@ -1,5 +1,5 @@
extern crate env_logger;
extern crate qadapt;
use env_logger;
use qadapt::allocate_panic;
+4 -4
View File
@@ -11,14 +11,14 @@
//! Please also take a look at [qadapt-macro](https://github.com/bspeice/qadapt/tree/master/qadapt-macro)
//! for some helper macros to make working with QADAPT a bit easier.
#![deny(missing_docs)]
extern crate libc;
#[macro_use]
extern crate log;
extern crate qadapt_macro;
extern crate spin;
// thread_id is necessary because `std::thread::current()` panics if we have not yet
// allocated a `thread_local!{}` it depends on.
extern crate thread_id;
use thread_id;
// Re-export the proc macros to use by other code
pub use qadapt_macro::*;
+1 -1
View File
@@ -1,4 +1,4 @@
extern crate qadapt;
use qadapt::enter_protected;
use qadapt::exit_protected;
+1 -1
View File
@@ -1,4 +1,4 @@
extern crate qadapt;
use std::io;
use qadapt::allocate_panic;