Skip to content

Commit a097cc2

Browse files
committed
Fix promote_connect_type
1 parent 6ba3585 commit a097cc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systems/abstractsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ end
715715

716716
promote_connect_rule(::Type{T}, ::Type{S}) where {T, S} = Union{}
717717
promote_connect_rule(::Type{T}, ::Type{T}) where {T} = T
718-
promote_connect_type(t1::Type, t2::Type, ts::Type...) = promote_connect_rule(promote_connect_rule(t1, t2), ts...)
718+
promote_connect_type(t1::Type, t2::Type, ts::Type...) = promote_connect_type(promote_connect_rule(t1, t2), ts...)
719719
@inline function promote_connect_type(::Type{T}, ::Type{S}) where {T,S}
720720
promote_connect_result(
721721
T,

0 commit comments

Comments
 (0)