From 2b42519e30b7d7ff82b14e35117644b423991fc1 Mon Sep 17 00:00:00 2001 From: Judah Caruso Date: Mon, 19 May 2025 13:14:57 -0600 Subject: [PATCH] . --- math/vec.jai | 1 - 1 file changed, 1 deletion(-) diff --git a/math/vec.jai b/math/vec.jai index 37d5db3..75b7f98 100644 --- a/math/vec.jai +++ b/math/vec.jai @@ -29,7 +29,6 @@ */ Vec :: struct(N: int, T: Type) #modify { - info := T.(*Type_Info); return info.type == .INTEGER || info.type == .FLOAT, "Vec T must be a numeric type (int or float)"; } {