rwcarlsen / goexif

Decode embedded EXIF meta data from image files.
BSD 2-Clause "Simplified" License
627 stars 134 forks source link

exif: Define all constants as FieldName #53

Closed mafredri closed 6 years ago

mafredri commented 6 years ago

Previously only the first entry was defined as a FieldName, the rest were regular strings.

The only time consts inherit the type is when they're in the same block and iota is used (e.g. no assignment for the following consts).

bradfitz commented 6 years ago

LGTM. @rwcarlsen, @mpl, could one of you merge?