about summary refs log tree commit diff
path: root/src/libstd/num
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2013-05-08 22:44:43 -0400
committerDaniel Micay <danielmicay@gmail.com>2013-05-09 14:00:53 -0400
commit2bc12635a24abf710304c06a91dbf3709cba8fd4 (patch)
treecd71da4f973f0702a6211db63b6aa5f66c1f2cb8 /src/libstd/num
parentd82d9874a6f88e0afa021796e9efaba5b3670c31 (diff)
downloadrust-2bc12635a24abf710304c06a91dbf3709cba8fd4.tar.gz
rust-2bc12635a24abf710304c06a91dbf3709cba8fd4.zip
remove vecs_implicitly_copyable from libstd/libcore
Diffstat (limited to 'src/libstd/num')
-rw-r--r--src/libstd/num/bigint.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/num/bigint.rs b/src/libstd/num/bigint.rs
index a5cf929ed93..5762d863935 100644
--- a/src/libstd/num/bigint.rs
+++ b/src/libstd/num/bigint.rs
@@ -16,7 +16,6 @@ A BigUint is represented as an array of BigDigits.
 A BigInt is a combination of BigUint and Sign.
 */
 
-#[deny(vecs_implicitly_copyable)];
 #[deny(deprecated_mutable_fields)];
 
 use core::cmp::{Eq, Ord, TotalEq, TotalOrd, Ordering, Less, Equal, Greater};