diff options
author | Desmond <info@desmonding.me> | 2018-09-04 11:29:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-04 11:29:38 +0800 |
commit | cffdb37e819933cc76741a5396dc1e7cb0bf5cd5 (patch) | |
tree | 7284c5f99045950c4ff5999548e4b73473935d0f /components/geometry | |
parent | ec9d0f21a6561f379fcc42bff766356b6207ecd0 (diff) | |
download | servo-cffdb37e819933cc76741a5396dc1e7cb0bf5cd5.tar.gz servo-cffdb37e819933cc76741a5396dc1e7cb0bf5cd5.zip |
Move malloc_size_of_derive to proper position
Diffstat (limited to 'components/geometry')
-rw-r--r-- | components/geometry/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/geometry/lib.rs b/components/geometry/lib.rs index 22453483d15..2f421f6a277 100644 --- a/components/geometry/lib.rs +++ b/components/geometry/lib.rs @@ -5,9 +5,9 @@ extern crate app_units; extern crate euclid; extern crate malloc_size_of; -extern crate style_traits; #[macro_use] extern crate malloc_size_of_derive; +extern crate style_traits; extern crate webrender_api; use app_units::{Au, MAX_AU, MIN_AU}; |