diff --git a/src/tags_int.cpp b/src/tags_int.cpp index 11a0d55d..d2c2fa8e 100644 --- a/src/tags_int.cpp +++ b/src/tags_int.cpp @@ -1836,6 +1836,12 @@ namespace Exiv2 { { 'N', N_("knots") } }; + //! GPS direction ref, tags 0x000e, 0x0010, 0x0017 + extern const TagDetails exifGPSDirRef[] = { + { 'T', N_("True direction") }, + { 'M', N_("Magnetic direction") } + }; + //! GPS Destination distance ref, tag 0x0019 extern const TagDetails exifGPSDestDistanceRef[] = { { 'K', N_("Kilometers") }, @@ -2887,12 +2893,6 @@ namespace Exiv2 { return EXV_PRINT_TAG(exifSubjectDistanceRange)(os, value, metadata); } - //! GPS direction ref, tags 0x000e, 0x0010, 0x0017 - extern const TagDetails exifGPSDirRef[] = { - { 'T', N_("True direction") }, - { 'M', N_("Magnetic direction") } - }; - std::ostream& printGPSDirRef(std::ostream& os, const Value& value, const ExifData* metadata) { return EXV_PRINT_TAG(exifGPSDirRef)(os, value, metadata);