Skip to content

Commit 36a2f57

Browse files
committed
Fix empty constructor for Links
It's hard to understand how this wasn't an error.
1 parent c591479 commit 36a2f57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codeedges.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ struct Links
1111
slots::Vector{Int}
1212
names::Vector{NamedVar}
1313
end
14-
Links() = Links(Int[], Int[], Int[])
14+
Links() = Links(Int[], Int[], NamedVar[])
1515

1616
function Base.show(io::IO, l::Links)
1717
print(io, "ssas: ", showempty(l.ssas),

0 commit comments

Comments
 (0)