You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ah, this is actually a bug in StructTypes itself, the definition of @inline function construct(values::Vector{Any}, ::Type{T}) where {T} takes a Vector{Any} and constructs T, but doesn't call construct, it just calls T(...). Should be pretty easy to fix if someone wants to make a PR to StructTypes.jl.
It calls the object constructor but not
StructTypes.construct
, which violates theStructTypes
API.The text was updated successfully, but these errors were encountered: