aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/layout_debug.rs
diff options
context:
space:
mode:
authorRavi Shankar <wafflespeanut@gmail.com>2015-09-24 02:12:45 +0530
committerRavi Shankar <wafflespeanut@gmail.com>2015-09-24 02:12:45 +0530
commit889eec364b6e3df22d36581008289e6fbfb8b39f (patch)
tree056e9dbc10fb3879b4a281296fe99e88490aacc3 /components/layout/layout_debug.rs
parent705ad72aee58b4fc636bca3a2784c7643048336d (diff)
downloadservo-889eec364b6e3df22d36581008289e6fbfb8b39f.tar.gz
servo-889eec364b6e3df22d36581008289e6fbfb8b39f.zip
sorted the extern crate, mod & use declarations
Diffstat (limited to 'components/layout/layout_debug.rs')
-rw-r--r--components/layout/layout_debug.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/components/layout/layout_debug.rs b/components/layout/layout_debug.rs
index 24d20442457..9175b7aec89 100644
--- a/components/layout/layout_debug.rs
+++ b/components/layout/layout_debug.rs
@@ -5,8 +5,6 @@
//! Supports writing a trace file created during each layout scope
//! that can be viewed by an external tool to make layout debugging easier.
-#![macro_use]
-
use flow;
use flow_ref::FlowRef;
use rustc_serialize::json;
@@ -14,7 +12,7 @@ use std::borrow::ToOwned;
use std::cell::RefCell;
use std::fs::File;
use std::io::Write;
-use std::sync::atomic::{AtomicUsize, Ordering, ATOMIC_USIZE_INIT};
+use std::sync::atomic::{ATOMIC_USIZE_INIT, AtomicUsize, Ordering};
thread_local!(static STATE_KEY: RefCell<Option<State>> = RefCell::new(None));