Remove Traceable from browsercontext.rs

This commit is contained in:
Manish Goregaokar 2014-09-28 16:32:31 +05:30
parent b908d5accb
commit 8de00ab999
2 changed files with 7 additions and 8 deletions

View file

@ -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);
}
}