Skip to content

Commit 0a278a7

Browse files
committed
fix failure
1 parent 4e355c2 commit 0a278a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/build_function.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ function _build_function(target::JuliaTarget, rhss, args...;
258258
rhss = SparseMatrixCSC(rhss.m, rhss.m, rhss.colptr, rhss.rowval, map(unflatten_long_ops, rhss.nzval))
259259
else
260260
rhs_length = length(rhss)
261-
rhss = Expression[unflatten_long_ops(r) for r in rhss]
261+
rhss = [unflatten_long_ops(r) for r in rhss]
262262
end
263263

264264
if parallel isa DistributedForm

0 commit comments

Comments
 (0)