about summary refs log tree commit diff
path: root/src/libstd/collections/hash
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-28 18:12:06 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-28 18:12:06 +0530
commit5eb4be4c562c369921a6b71812a2003c4cf3163e (patch)
tree459601ecc6c928a3cba7b36be19269b5ce06b853 /src/libstd/collections/hash
parent4aa17c80e605092e05251b5b1a6a08df9cf5fc0c (diff)
parentcbce6bfbdb140561add2ff258b305e7c7f2ad5c6 (diff)
downloadrust-5eb4be4c562c369921a6b71812a2003c4cf3163e.tar.gz
rust-5eb4be4c562c369921a6b71812a2003c4cf3163e.zip
Rollup merge of #23803 - richo:unused-braces, r=Manishearth
Pretty much what it says on the tin.
Diffstat (limited to 'src/libstd/collections/hash')
-rw-r--r--src/libstd/collections/hash/bench.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/bench.rs b/src/libstd/collections/hash/bench.rs
index ca506e8c36f..ac21ae0f0aa 100644
--- a/src/libstd/collections/hash/bench.rs
+++ b/src/libstd/collections/hash/bench.rs
@@ -14,7 +14,7 @@ extern crate test;
 use prelude::v1::*;
 
 use self::test::Bencher;
-use iter::{range_inclusive};
+use iter::range_inclusive;
 
 #[bench]
 fn new_drop(b : &mut Bencher) {