Skip to content

Commit 1d6f9fb

Browse files
committed
fix empty-matrix creation for Julia 1.6
1 parent 797b091 commit 1d6f9fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ end
123123
H = try
124124
Matrix{Int}(hadamard(i))
125125
catch
126-
Int[;;]
126+
Matrix{Int}(undef,0,0)
127127
end
128128
if !isempty(H)
129129
# print(i, ", ")

0 commit comments

Comments
 (0)