Skip to content

Commit

Permalink
remove free TypeVar
Browse files Browse the repository at this point in the history
  • Loading branch information
sjkelly committed Mar 6, 2023
1 parent 9bab3b1 commit b2a9cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components_utils/table_format.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module TableFormat

struct NamedValue{Name, T}
value::T
NamedValue{Name}(value::T) where {Name, Keys, T} = new{Name, T}(value)
NamedValue{Name}(value::T) where {Name, T} = new{Name, T}(value)
end

struct TupleWithNamedValues{Name, Keys}
Expand Down

0 comments on commit b2a9cd2

Please sign in to comment.