diff options
author | Ms2ger <Ms2ger@gmail.com> | 2015-11-05 09:58:56 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2015-11-05 09:58:56 +0100 |
commit | 1c12ec05e0ef4724db8a37532c5fad5dcc5b2f0f (patch) | |
tree | afab93add1f143269e81d07ab02e347a9c5156e9 /components/script/parse/xml.rs | |
parent | 021f441d24893861d45fec0cef7ed88dc9e6543a (diff) | |
download | servo-1c12ec05e0ef4724db8a37532c5fad5dcc5b2f0f.tar.gz servo-1c12ec05e0ef4724db8a37532c5fad5dcc5b2f0f.zip |
Silence unused code warnings.
Diffstat (limited to 'components/script/parse/xml.rs')
-rw-r--r-- | components/script/parse/xml.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/parse/xml.rs b/components/script/parse/xml.rs index c741fd03306..907c1600f0c 100644 --- a/components/script/parse/xml.rs +++ b/components/script/parse/xml.rs @@ -13,8 +13,8 @@ pub enum ParseContext { } -pub fn parse_xml(document: &Document, - input: DOMString, - url: Url, - context: ParseContext) { +pub fn parse_xml(_document: &Document, + _input: DOMString, + _url: Url, + _context: ParseContext) { } |