about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSeo Sanghyeon <sanxiyn@gmail.com>2016-06-10 21:16:45 +0900
committerGitHub <noreply@github.com>2016-06-10 21:16:45 +0900
commit493f14903e74d37c38fd16b25ad1bc2a017530ee (patch)
treed462bede4321d018484ac3e47ceca5d2675a3644
parent63bb68b861f4f7ce4b9d28ef82b7107e683a6aa7 (diff)
parent27d4ed4d340b30d0bc6ba7b49f27af68566af06a (diff)
downloadrust-493f14903e74d37c38fd16b25ad1bc2a017530ee.tar.gz
rust-493f14903e74d37c38fd16b25ad1bc2a017530ee.zip
Rollup merge of #34148 - srinivasreddy:bitflags_rustfmt, r=nagisa
run rustfmt on librustc_bitflags folder
-rw-r--r--src/librustc_bitflags/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_bitflags/lib.rs b/src/librustc_bitflags/lib.rs
index e2025eaa8ee..afc2e04d446 100644
--- a/src/librustc_bitflags/lib.rs
+++ b/src/librustc_bitflags/lib.rs
@@ -291,8 +291,8 @@ macro_rules! bitflags {
 #[cfg(test)]
 #[allow(non_upper_case_globals)]
 mod tests {
-    use std::hash::{Hasher, Hash, SipHasher};
-    use std::option::Option::{Some, None};
+    use std::hash::{Hash, Hasher, SipHasher};
+    use std::option::Option::{None, Some};
 
     bitflags! {
         #[doc = "> The first principle is that you must not fool yourself — and"]