From ac7110e098a38c003c0c3d780069a5ff76f3cc73 Mon Sep 17 00:00:00 2001 From: diego Date: Fri, 14 Aug 2026 13:21:03 +0200 Subject: [PATCH] Remove unused variable in fixed-point write procedure --- core/math/fixed/fixed.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math/fixed/fixed.odin b/core/math/fixed/fixed.odin index 6b9ef364b..65d7af772 100644 --- a/core/math/fixed/fixed.odin +++ b/core/math/fixed/fixed.odin @@ -148,7 +148,7 @@ write :: proc(dst: []byte, x: $T/Fixed($Backing, $Fraction_Width)) -> string { } } - n := copy(dst, buf[:i]) + copy(dst, buf[:i]) return string(dst[:i]) }