mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Remove Traceable from customevent.rs
This commit is contained in:
parent
4f574b4732
commit
63dd3070d1
2 changed files with 6 additions and 7 deletions
|
@ -186,9 +186,9 @@ impl JSTraceable for *mut JSObject {
|
|||
}
|
||||
}
|
||||
|
||||
impl JSTraceable for Traceable<JSVal> {
|
||||
impl JSTraceable for JSVal {
|
||||
fn trace(&self, trc: *mut JSTracer) {
|
||||
trace_jsval(trc, "val", **self);
|
||||
trace_jsval(trc, "val", *self);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue