From 2818c7099fd4e39bf48b25591add106649db1d81 Mon Sep 17 00:00:00 2001 From: Stjepan Glavina Date: Thu, 12 Sep 2019 23:24:20 +0200 Subject: [PATCH] Suppress a lint that makes CI fail on windows --- src/net/driver/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/net/driver/mod.rs b/src/net/driver/mod.rs index be31ec9..806acdb 100644 --- a/src/net/driver/mod.rs +++ b/src/net/driver/mod.rs @@ -263,6 +263,7 @@ impl Watcher { /// Deregisters and returns the inner I/O source. /// /// This method is typically used to convert `Watcher`s to raw file descriptors/handles. + #[allow(dead_code)] pub fn into_inner(mut self) -> T { let source = self.source.take().unwrap(); REACTOR