From f9d802fb1dfad597af98767cdfe7e24f26dd0ebb Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 2 Oct 2019 11:22:40 -0700 Subject: [PATCH] Format with rustfmt. --- cranelift/bforest/src/map.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cranelift/bforest/src/map.rs b/cranelift/bforest/src/map.rs index 7d7e456623..79ac018a98 100644 --- a/cranelift/bforest/src/map.rs +++ b/cranelift/bforest/src/map.rs @@ -3,10 +3,10 @@ use super::{Comparator, Forest, Node, NodeData, NodePool, Path, INNER_SIZE}; use crate::packed_option::PackedOption; #[cfg(test)] +use alloc::string::String; +#[cfg(test)] use core::fmt; use core::marker::PhantomData; -#[cfg(test)] -use alloc::string::String; /// Tag type defining forest types for a map. struct MapTypes(PhantomData<(K, V)>);