about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorRicho Healey <richo@psych0tik.net>2015-03-28 02:23:20 -0700
committerRicho Healey <richo@psych0tik.net>2015-03-28 02:23:20 -0700
commitcbce6bfbdb140561add2ff258b305e7c7f2ad5c6 (patch)
tree1f30cca11906cea62f06810e0e8ad6d5f787633b /src/liballoc
parent0c9de8140b8abdd2d0a83db93746c58e8bc0da2c (diff)
downloadrust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.tar.gz
rust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.zip
cleanup: Remove unused braces in use statements
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/arc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs
index b5d16d29272..1607fd34c51 100644
--- a/src/liballoc/arc.rs
+++ b/src/liballoc/arc.rs
@@ -76,7 +76,7 @@ use core::prelude::*;
 use core::atomic;
 use core::atomic::Ordering::{Relaxed, Release, Acquire, SeqCst};
 use core::fmt;
-use core::cmp::{Ordering};
+use core::cmp::Ordering;
 use core::default::Default;
 use core::mem::{min_align_of, size_of};
 use core::mem;