From 5f9daf725bd53e2758ff4e28dc37fd38a8d00644 Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Sat, 21 Nov 2020 10:15:20 +0000 Subject: [PATCH] Moved orphaned declaration of exifGPSDirRef. --- src/tags_int.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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);