Fix unused import warnings on 32bit systems

This commit is contained in:
Brendan Zabarauskas 2013-09-09 03:51:29 +10:00
parent 8445009a84
commit 2c31053d20
2 changed files with 6 additions and 2 deletions

View File

@ -10,7 +10,9 @@
//! Operations and constants for `i64`
use num::{BitCount, CheckedAdd, CheckedSub, CheckedMul};
use num::{BitCount, CheckedAdd, CheckedSub};
#[cfg(target_word_size = "64")]
use num::CheckedMul;
use option::{Option, Some, None};
use unstable::intrinsics;

View File

@ -10,7 +10,9 @@
//! Operations and constants for `u64`
use num::{CheckedAdd, CheckedSub, CheckedMul};
use num::{CheckedAdd, CheckedSub};
#[cfg(target_word_size = "64")]
use num::CheckedMul;
use option::{Option, Some, None};
use unstable::intrinsics;