Mark some unused fields.

This commit is contained in:
Ms2ger 2014-07-04 11:56:55 +02:00
parent cfa9aaac08
commit 11aa36619d
5 changed files with 11 additions and 10 deletions

View file

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