diff options
Diffstat (limited to 'src/components/script/dom/bindings/callback.rs')
-rw-r--r-- | src/components/script/dom/bindings/callback.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/script/dom/bindings/callback.rs b/src/components/script/dom/bindings/callback.rs index 7a261bf7cc7..8b0c1879dd3 100644 --- a/src/components/script/dom/bindings/callback.rs +++ b/src/components/script/dom/bindings/callback.rs @@ -109,7 +109,7 @@ pub fn WrapCallThisObject<T: Reflectable>(cx: *mut JSContext, pub struct CallSetup { cx: *mut JSContext, - handling: ExceptionHandling + _handling: ExceptionHandling } impl CallSetup { @@ -118,7 +118,7 @@ impl CallSetup { let cx = win.deref().get_cx(); CallSetup { cx: cx, - handling: handling + _handling: handling } } |