We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f45ade4 commit cc41e61Copy full SHA for cc41e61
src/Utils.jl
@@ -7,7 +7,7 @@ using LoopVectorization: @turbo
7
function _remove_type_assertions(ex::Expr)
8
if ex.head == :(::)
9
@assert length(ex.args) == 2
10
- return ex.args[1]
+ return _remove_type_assertions(ex.args[1])
11
else
12
return Expr(ex.head, map(_remove_type_assertions, ex.args)...)
13
end
0 commit comments