Skip to content

Commit cc41e61

Browse files
committed
Fix for edge case
1 parent f45ade4 commit cc41e61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ using LoopVectorization: @turbo
77
function _remove_type_assertions(ex::Expr)
88
if ex.head == :(::)
99
@assert length(ex.args) == 2
10-
return ex.args[1]
10+
return _remove_type_assertions(ex.args[1])
1111
else
1212
return Expr(ex.head, map(_remove_type_assertions, ex.args)...)
1313
end

0 commit comments

Comments
 (0)