about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-10-17 09:22:14 +0000
committerbors <bors@rust-lang.org>2014-10-17 09:22:14 +0000
commit93e589c8726d91c084932af370742c15d97a0c24 (patch)
tree717a2fc1200b1894c3ffea9f13bf366203c71479
parentfa59bb08699f2b9905adf20f103b6334e73f6b9f (diff)
parentc1f7a19409c15622520de9fbd7506c6c2443cd1e (diff)
downloadrust-93e589c8726d91c084932af370742c15d97a0c24.tar.gz
rust-93e589c8726d91c084932af370742c15d97a0c24.zip
auto merge of #18089 : gamazeps/rust/small-bitv-cleanup, r=alexcrichton
I was going to write some doc in order to remove the #[allow(missing_doc)] but there was actually none missing.
I also removed a warning i didn't see in my last commit  #18018
Linked to #18009
-rw-r--r--src/libcollections/bitv.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libcollections/bitv.rs b/src/libcollections/bitv.rs
index 81f30097ea5..1e081ae8a4b 100644
--- a/src/libcollections/bitv.rs
+++ b/src/libcollections/bitv.rs
@@ -59,8 +59,6 @@
 //! println!("There are {} primes below {}", num_primes, max_prime);
 //! ```
 
-#![allow(missing_doc)]
-
 use core::prelude::*;
 
 use core::cmp;
@@ -1640,7 +1638,6 @@ mod tests {
     use std::prelude::*;
     use std::iter::range_step;
     use std::u32;
-    use std::uint;
     use std::rand;
     use std::rand::Rng;
     use test::Bencher;