From dcaa764b578879509927035a5db615d49adfeaab Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Sat, 31 Oct 2015 12:21:51 -0700 Subject: [PATCH] Fix unused variable warnings. --- components/script/dom/htmllabelelement.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/script/dom/htmllabelelement.rs b/components/script/dom/htmllabelelement.rs index ae1aa580cc3..0e13261026d 100644 --- a/components/script/dom/htmllabelelement.rs +++ b/components/script/dom/htmllabelelement.rs @@ -69,7 +69,7 @@ impl Activatable for HTMLLabelElement { } // https://html.spec.whatwg.org/multipage/#implicit-submission - fn implicit_submission(&self, ctrlKey: bool, shiftKey: bool, altKey: bool, metaKey: bool) { + fn implicit_submission(&self, _ctrlKey: bool, _shiftKey: bool, _altKey: bool, _metaKey: bool) { //FIXME: Investigate and implement implicit submission for label elements // Issue filed at https://github.com/servo/servo/issues/8263 }