Haiku: Fix missing use merge of pointer module

This commit is contained in:
Alexander von Gluck IV 2016-10-03 10:04:11 -05:00
parent a3ff95554e
commit c5660180a5

View File

@ -702,7 +702,9 @@ extern {
cfg_if! {
if #[cfg(target_pointer_width = "64")] {
mod b64;
pub use self::b64::*;
} else {
mod b32;
pub use self::b32::*;
}
}