about summary refs log tree commit diff
path: root/src/libstd/num
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2013-05-09 13:27:24 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2013-05-11 20:36:44 -0700
commited4186446492e141a4dc37829dc9599133d00dd0 (patch)
treeb26e12beb4abead4e7dd3c0834c5e055a1fba478 /src/libstd/num
parentf2f10bdc7a2f1d1501abb04f3625356c0c251d92 (diff)
downloadrust-ed4186446492e141a4dc37829dc9599133d00dd0.tar.gz
rust-ed4186446492e141a4dc37829dc9599133d00dd0.zip
Warning police
Diffstat (limited to 'src/libstd/num')
-rw-r--r--src/libstd/num/bigint.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libstd/num/bigint.rs b/src/libstd/num/bigint.rs
index e64e97adfa3..7b39b200079 100644
--- a/src/libstd/num/bigint.rs
+++ b/src/libstd/num/bigint.rs
@@ -16,8 +16,6 @@ A BigUint is represented as an array of BigDigits.
 A BigInt is a combination of BigUint and Sign.
 */
 
-#[deny(deprecated_mutable_fields)];
-
 use core::cmp::{Eq, Ord, TotalEq, TotalOrd, Ordering, Less, Equal, Greater};
 use core::num::{IntConvertible, Zero, One, ToStrRadix, FromStrRadix};