diff --git a/lib/std/math/math.c3 b/lib/std/math/math.c3 index ea2724c8a..ffe1d816a 100644 --- a/lib/std/math/math.c3 +++ b/lib/std/math/math.c3 @@ -372,7 +372,7 @@ macro sqrt(x) => $$sqrt(values::promote_int(x)); macro tan(x) { var $Type = $typeof(x); - $if (types.is_vector($Type)): + $if (types::is_vector($Type)): return $$sin(x) / $$cos(x); $elif ($Type.typeid == float.typeid): return _tanf(x);