From a462e957993d4a063ab1a0893e65512c483f71c3 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 19 Aug 2024 06:32:29 -0700 Subject: [PATCH] chore: allow matching infallible (#796) --- src/proto/streams/store.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/proto/streams/store.rs b/src/proto/streams/store.rs index 35fd6f25..79c1f93b 100644 --- a/src/proto/streams/store.rs +++ b/src/proto/streams/store.rs @@ -137,6 +137,7 @@ impl Store { Ok::<_, Infallible>(()) }) { Ok(()) => (), + #[allow(unused)] Err(infallible) => match infallible {}, } }