From e15230c1945b9342bb814891b563f50e0ffac5d6 Mon Sep 17 00:00:00 2001 From: jakubtomsu <66876057+jakubtomsu@users.noreply.github.com> Date: Fri, 10 Apr 2026 17:21:03 +0200 Subject: [PATCH] remove force_inline from vector_dot --- core/math/linalg/general.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math/linalg/general.odin b/core/math/linalg/general.odin index ae4acc8bb..956fdb919 100644 --- a/core/math/linalg/general.odin +++ b/core/math/linalg/general.odin @@ -45,7 +45,7 @@ scalar_dot :: proc "contextless" (a, b: $T) -> T where IS_FLOAT(T), !IS_ARRAY(T) } @(require_results) -vector_dot :: #force_inline proc "contextless" (a, b: $T/[$N]$E) -> (c: E) where IS_NUMERIC(E) #no_bounds_check { +vector_dot :: proc "contextless" (a, b: $T/[$N]$E) -> (c: E) where IS_NUMERIC(E) #no_bounds_check { ab := a * b when N == 1 { return ab.x