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
Currently unused_record_fields counts fields in record constructions (e.g. MyRec = #my_rec{field = value} as used (i.e. it doesn't report them) since it can't easily distinguish them from patttern-matching (e.g. #my_rec{field = value} = MyRec).
But assigning a value to a field should not really count as usage.
The text was updated successfully, but these errors were encountered:
Currently
unused_record_fields
counts fields in record constructions (e.g.MyRec = #my_rec{field = value}
as used (i.e. it doesn't report them) since it can't easily distinguish them from patttern-matching (e.g.#my_rec{field = value} = MyRec
).But assigning a value to a field should not really count as usage.
The text was updated successfully, but these errors were encountered: