diff options
author | 2016-04-09 17:58:20 -0700 | |
---|---|---|
committer | 2016-04-09 17:58:20 -0700 | |
commit | 99d1e36518db71c48c70299f83c732adb8f6605c (patch) | |
tree | 0fc8101777f968d92bff2dfbd60e150b2bbf910c /src/x86.rs | |
parent | e2df889a80415c415f915fb1a5f8119b242025dd (diff) | |
download | rust-x86-99d1e36518db71c48c70299f83c732adb8f6605c.tar.gz rust-x86-99d1e36518db71c48c70299f83c732adb8f6605c.tar.zst rust-x86-99d1e36518db71c48c70299f83c732adb8f6605c.zip |
Add publicity to bitflags
Diffstat (limited to 'src/x86.rs')
-rw-r--r-- | src/x86.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ use core::mem::size_of; mod x86_shared; bitflags! { - flags GdtAccess: u8 { + pub flags GdtAccess: u8 { const Accessed = 1 << 0, const Writable = 1 << 1, const Direction = 1 << 2, |