From 547ed204550bf60b0aaa5788eaa0c1590da1544d Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Wed, 28 Jan 2015 13:51:35 +0530 Subject: [PATCH] silence fetch warnings --- components/net/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/net/lib.rs b/components/net/lib.rs index 96994a81ad7..857461aa335 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -45,7 +45,7 @@ mod sniffer_task; /// An implementation of the [Fetch spec](http://fetch.spec.whatwg.org/) pub mod fetch { - #![allow(dead_code)] // XXXManishearth this is only temporary until the Fetch mod starts being used + #![allow(dead_code, unused)] // XXXManishearth this is only temporary until the Fetch mod starts being used pub mod request; pub mod response; pub mod cors_cache;