diff options
author | Michael Wu <mwu@mozilla.com> | 2015-06-19 22:07:08 -0400 |
---|---|---|
committer | Michael Wu <mwu@mozilla.com> | 2015-06-19 22:07:08 -0400 |
commit | b7301ca06c892da4d38247b86e81edaa5181a969 (patch) | |
tree | 02fb4fc9b4f33987fd356507f761cfe14e721a2b /components/script/dom/bindings/cell.rs | |
parent | e7808c526c348fea5e3b48af70b7f1a066652097 (diff) | |
download | servo-b7301ca06c892da4d38247b86e81edaa5181a969.tar.gz servo-b7301ca06c892da4d38247b86e81edaa5181a969.zip |
Fix some warnings caused by the SM upgrade
Diffstat (limited to 'components/script/dom/bindings/cell.rs')
-rw-r--r-- | components/script/dom/bindings/cell.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/cell.rs b/components/script/dom/bindings/cell.rs index 6513e250166..35b20d0a417 100644 --- a/components/script/dom/bindings/cell.rs +++ b/components/script/dom/bindings/cell.rs @@ -8,7 +8,7 @@ use dom::bindings::trace::JSTraceable; use js::jsapi::{JSTracer}; use util::task_state; -use util::task_state::{SCRIPT, IN_GC}; +use util::task_state::SCRIPT; use std::cell::{BorrowState, RefCell, Ref, RefMut}; |