about summary refs log tree commit diff
path: root/src/libstd/sys/hermit
diff options
context:
space:
mode:
authorStefan Lankes <slankes@eonerc.rwth-aachen.de>2020-06-04 06:47:38 +0200
committerStefan Lankes <slankes@eonerc.rwth-aachen.de>2020-06-26 00:02:59 +0200
commitbeb1b1fa5b1047c7caf8a1d499725df3c1ad8cad (patch)
treec3df80333d33d7058def3d83fa147d2cd4a99652 /src/libstd/sys/hermit
parent3acc3ef10d2099a4b3118e8c705b36f4bbaf6f64 (diff)
downloadrust-beb1b1fa5b1047c7caf8a1d499725df3c1ad8cad.tar.gz
rust-beb1b1fa5b1047c7caf8a1d499725df3c1ad8cad.zip
reorder crates to pass the format check
Diffstat (limited to 'src/libstd/sys/hermit')
-rw-r--r--src/libstd/sys/hermit/condvar.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/hermit/condvar.rs b/src/libstd/sys/hermit/condvar.rs
index b318890a10e..e41d4eb4fa7 100644
--- a/src/libstd/sys/hermit/condvar.rs
+++ b/src/libstd/sys/hermit/condvar.rs
@@ -1,7 +1,7 @@
-use crate::ptr;
 use crate::cmp;
 use crate::ffi::c_void;
 use crate::mem;
+use crate::ptr;
 use crate::sync::atomic::{AtomicUsize, Ordering::SeqCst};
 use crate::sys::hermit::abi;
 use crate::sys::mutex::Mutex;