aboutsummaryrefslogtreecommitdiff
path: root/src/irq.rs
diff options
context:
space:
mode:
authorGravatar Brian Martin <bmartin@twitter.com> 2019-02-14 14:32:21 -0800
committerGravatar Brian Martin <bmartin@twitter.com> 2019-02-14 14:52:15 -0800
commit8f30a2fc3d5d73f90a4ba64d0a90348e59e7967b (patch)
treeb9d29e6e317c5f3b23c8a88127c42d72b750cff4 /src/irq.rs
parent4c838b6691b6ec47a08b5be327b90bd2423203e2 (diff)
downloadrust-x86-8f30a2fc3d5d73f90a4ba64d0a90348e59e7967b.tar.gz
rust-x86-8f30a2fc3d5d73f90a4ba64d0a90348e59e7967b.tar.zst
rust-x86-8f30a2fc3d5d73f90a4ba64d0a90348e59e7967b.zip
update to Rust 2018 edition
* specify 2018 edition in the manifest * changes to fix build with 2018 edition
Diffstat (limited to 'src/irq.rs')
-rw-r--r--src/irq.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/irq.rs b/src/irq.rs
index 727fd7d..12534f1 100644
--- a/src/irq.rs
+++ b/src/irq.rs
@@ -1,6 +1,8 @@
//! Shared interrupt description and set-up code.
//! See the `bits*::irq` modules for arch-specific portions.
+use bitflags::*;
+
use core::fmt;
/// x86 Exception description (see also Intel Vol. 3a Chapter 6).