mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Remove Traceable from browsercontext.rs
This commit is contained in:
parent
b908d5accb
commit
8de00ab999
2 changed files with 7 additions and 8 deletions
|
@ -180,9 +180,9 @@ impl<T: JSTraceable+Copy> JSTraceable for Cell<T> {
|
|||
}
|
||||
}
|
||||
|
||||
impl JSTraceable for Traceable<*mut JSObject> {
|
||||
impl JSTraceable for *mut JSObject {
|
||||
fn trace(&self, trc: *mut JSTracer) {
|
||||
trace_object(trc, "object", **self);
|
||||
trace_object(trc, "object", *self);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue