From d7844657ee69987a27d6fb6735a512e536a1d5a3 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Sun, 1 Nov 2015 05:50:03 +0501 Subject: [PATCH] servo: Merge #8287 - Fix unused variable warnings (from eefriedman:label-unused-var); r=Manishearth Source-Repo: https://github.com/servo/servo Source-Revision: 1add1185ab338709082981f226e8227cabfac866 --- servo/components/script/dom/htmllabelelement.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servo/components/script/dom/htmllabelelement.rs b/servo/components/script/dom/htmllabelelement.rs index ae1aa580cc34..0e13261026d2 100644 --- a/servo/components/script/dom/htmllabelelement.rs +++ b/servo/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 }