aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/vec.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/util/vec.rs')
-rw-r--r--components/util/vec.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/components/util/vec.rs b/components/util/vec.rs
index 638164971e4..ff9dcc0292d 100644
--- a/components/util/vec.rs
+++ b/components/util/vec.rs
@@ -2,11 +2,10 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-use super::smallvec::VecLike;
-
use std::cmp::{PartialOrd, PartialEq, Ordering};
use std::marker::PhantomData;
use std::ops;
+use super::smallvec::VecLike;
/// FIXME(pcwalton): Workaround for lack of unboxed closures. This is called in
/// performance-critical code, so a closure is insufficient.