diff options
author | Keegan McAllister <kmcallister@mozilla.com> | 2013-08-09 15:15:18 -0700 |
---|---|---|
committer | Keegan McAllister <kmcallister@mozilla.com> | 2013-08-15 13:55:40 -0700 |
commit | 1bdaff0fad9c76e65be969dc9844ab52df318e78 (patch) | |
tree | 24cb881133e405c0f867579266cb838133626b0b /src/components/main/layout/float.rs | |
parent | abaeb582035e05ecbe1134ec542cda463f808f7a (diff) | |
download | servo-1bdaff0fad9c76e65be969dc9844ab52df318e78.tar.gz servo-1bdaff0fad9c76e65be969dc9844ab52df318e78.zip |
Reorganize tree ref / node traits
rustc is no longer happy with
impl<NR:TreeNodeRef<N>,N:TreeNode<NR>> TreeUtils for NR
Diffstat (limited to 'src/components/main/layout/float.rs')
-rw-r--r-- | src/components/main/layout/float.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/main/layout/float.rs b/src/components/main/layout/float.rs index 2a2758d4aab..64d0c1c5cd3 100644 --- a/src/components/main/layout/float.rs +++ b/src/components/main/layout/float.rs @@ -15,7 +15,7 @@ use geom::rect::Rect; use gfx::display_list::DisplayList; use gfx::geometry::Au; use gfx::geometry; -use servo_util::tree::{TreeNodeRef, TreeUtils}; +use servo_util::tree::TreeNodeRef; pub struct FloatFlowData { /// Data common to all flows. |