diff options
| author | Brendan Zabarauskas <bjzaba@yahoo.com.au> | 2014-06-16 11:25:47 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-18 17:01:34 -0700 |
| commit | ff9f92ce5224f5e27b8dc39ffc02eb9481f7cff1 (patch) | |
| tree | f56ac5a3288101c49c4cc5c2e85b18dd4c2c6ff7 /src/libnum | |
| parent | 4c0f8f49f6fe860efa268efa2f4fa0b5f00a4b07 (diff) | |
| download | rust-ff9f92ce5224f5e27b8dc39ffc02eb9481f7cff1.tar.gz rust-ff9f92ce5224f5e27b8dc39ffc02eb9481f7cff1.zip | |
Merge the Bitwise and ByteOrder traits into the Int trait
This reduces the complexity of the trait hierarchy.
Diffstat (limited to 'src/libnum')
| -rw-r--r-- | src/libnum/bigint.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libnum/bigint.rs b/src/libnum/bigint.rs index 0933301970d..e9153f89e04 100644 --- a/src/libnum/bigint.rs +++ b/src/libnum/bigint.rs @@ -23,7 +23,7 @@ use std::{cmp, fmt}; use std::default::Default; use std::from_str::FromStr; use std::num::CheckedDiv; -use std::num::{Bitwise, ToPrimitive, FromPrimitive}; +use std::num::{ToPrimitive, FromPrimitive}; use std::num::{Zero, One, ToStrRadix, FromStrRadix}; use std::string::String; use std::{uint, i64, u64}; |
