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)"; } {