From c6aa657b4cc5a1bd7b3bd52b2ad4ee7a7258db61 Mon Sep 17 00:00:00 2001 From: John Doty Date: Thu, 8 Aug 2024 21:13:14 -0700 Subject: [PATCH] Fix warning in windows --- src/reverse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reverse.rs b/src/reverse.rs index f717dd9..971d274 100644 --- a/src/reverse.rs +++ b/src/reverse.rs @@ -22,7 +22,7 @@ impl ReverseConnection { )) } - pub async fn send(&mut self, message: Message) -> Result<()> { + pub async fn send(&mut self, _message: Message) -> Result<()> { use anyhow::anyhow; Err(anyhow!( "Server-side operations are not supported on this platform"