rustc is forgiving but I still don't like it

This commit is contained in:
Gregor Reitzenstein 2020-09-17 09:10:10 +02:00
parent cf723e8817
commit 053cf5498a

View File

@ -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<B, S: Signal<Item=B>, F: Fn(&B) -> bool>(&mut self, ) {
pub fn filter<B, S: Signal<Item=B>, F: Fn(&B) -> bool>(&mut self) {
unimplemented!()
}
}