From 053cf5498a6ae8e9f59c64c7116c399e223a3048 Mon Sep 17 00:00:00 2001 From: Gregor Reitzenstein Date: Thu, 17 Sep 2020 09:10:10 +0200 Subject: [PATCH] rustc is forgiving but I still don't like it --- src/network.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network.rs b/src/network.rs index e9d0e6b..5e4559d 100644 --- a/src/network.rs +++ b/src/network.rs @@ -19,7 +19,7 @@ impl Network { /// /// Idea being that bffh builds an event network that filters an incoming event into an /// the appropiate (sub)set of signal handlers based on pretty dynamic configuration. - pub fn filter, F: Fn(&B) -> bool>(&mut self, ) { + pub fn filter, F: Fn(&B) -> bool>(&mut self) { unimplemented!() } }