mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
Fix types.
This commit is contained in:
parent
16ca6f2a16
commit
a42cf9b379
1 changed files with 2 additions and 2 deletions
|
@ -466,7 +466,7 @@ pub impl LayoutTreeBuilder {
|
|||
}
|
||||
}
|
||||
if (do_remove) {
|
||||
parent_flow.remove_child(*first_flow);
|
||||
(*parent_flow).remove_child(*first_flow);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -489,7 +489,7 @@ pub impl LayoutTreeBuilder {
|
|||
}
|
||||
}
|
||||
if (do_remove) {
|
||||
parent_flow.remove_child(*last_flow);
|
||||
(*parent_flow).remove_child(*last_flow);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue