From f2d74d8596bba07a82bfc0f389cd562ac8d71a00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hubert=20G=C5=82uchowski?= Date: Fri, 17 Jul 2026 13:44:49 +0200 Subject: [PATCH] Fix trailing semicolon in expression from `make_static_outline` macro --- sbr-util/src/math/outline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbr-util/src/math/outline.rs b/sbr-util/src/math/outline.rs index 1e1e1117..adf3406d 100644 --- a/sbr-util/src/math/outline.rs +++ b/sbr-util/src/math/outline.rs @@ -196,7 +196,7 @@ macro_rules! make_static_outline { }; (@count_command $($anything: tt)*) => { 1 }; (@count_close_contour($first: expr) $next: expr, $($rest: tt)*) => { - $crate::make_static_outline!(@count_close_contour($first) $($rest)*); + $crate::make_static_outline!(@count_close_contour($first) $($rest)*) }; (@count_close_contour($first: expr) $last: expr) => { if const { $first.x != $last.x || $first.y != $last.y } { 1 } else { 0 }