From 1658e2d841a528b18d07c3ac570c9edc7617cba6 Mon Sep 17 00:00:00 2001 From: kalsprite Date: Sat, 15 Aug 2026 20:13:25 -0700 Subject: [PATCH] fix typo on cmplx -> quat --- src/check_builtin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/check_builtin.cpp b/src/check_builtin.cpp index 4a59a59b7..7498a4004 100644 --- a/src/check_builtin.cpp +++ b/src/check_builtin.cpp @@ -3866,7 +3866,7 @@ gb_internal bool check_builtin_procedure(CheckerContext *c, Operand *operand, As if (is_type_untyped(x->type)) { if (x->mode == Addressing_Constant) { if (is_type_numeric(x->type)) { - x->type = t_untyped_complex; + x->type = t_untyped_quaternion; } } else{ convert_to_typed(c, x, t_quaternion256);