From 291b62e21edc0e988afb5f996895ffee65fbccc5 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 24 Apr 2025 08:03:10 +0200 Subject: [PATCH] Make rust-analyzer happy about tap_inner macro --- axum/src/routing/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/routing/mod.rs b/axum/src/routing/mod.rs index 910d6768..2edf5ca1 100644 --- a/axum/src/routing/mod.rs +++ b/axum/src/routing/mod.rs @@ -127,7 +127,7 @@ macro_rules! tap_inner { #[allow(redundant_semicolons)] { let mut $inner = $self_.into_inner(); - $($stmt)* + $($stmt)*; Router { inner: Arc::new($inner), }