diff options
author | ecoal95 <ecoal95@gmail.com> | 2015-06-18 20:51:34 +0100 |
---|---|---|
committer | ecoal95 <ecoal95@gmail.com> | 2015-06-19 00:04:24 +0200 |
commit | 8cbfb3482c59186742fa8bcf3ec925730914ffc7 (patch) | |
tree | 65dfb2ba2e8fe5e93f22045bc9107dfc946e2cb4 /components/layout/model.rs | |
parent | 7355bf1061a21114654c1e8abe1d752624200799 (diff) | |
download | servo-8cbfb3482c59186742fa8bcf3ec925730914ffc7.tar.gz servo-8cbfb3482c59186742fa8bcf3ec925730914ffc7.zip |
Use euclid from crates.io
Diffstat (limited to 'components/layout/model.rs')
-rw-r--r-- | components/layout/model.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/model.rs b/components/layout/model.rs index b5adaf1a681..d6587a13a4c 100644 --- a/components/layout/model.rs +++ b/components/layout/model.rs @@ -8,7 +8,7 @@ use fragment::Fragment; -use geom::{Matrix4, SideOffsets2D}; +use euclid::{Matrix4, SideOffsets2D}; use std::cmp::{max, min}; use std::fmt; use style::computed_values::transform::ComputedMatrix; |