Made ExifTags::tagTitle not inlined, based on strange link error reported

This commit is contained in:
Andreas Huggel
2006-05-15 14:07:01 +00:00
parent 512355ae35
commit 00aaa2aee4
2 changed files with 6 additions and 2 deletions
+5
View File
@@ -408,6 +408,11 @@ namespace Exiv2 {
return os.str();
} // ExifTags::tagName
const char* ExifTags::tagTitle(uint16_t tag, IfdId ifdId)
{
return tagLabel(tag, ifdId);
} // ExifTags::tagTitle
const char* ExifTags::tagLabel(uint16_t tag, IfdId ifdId)
{
if (isExifIfd(ifdId)) {
+1 -2
View File
@@ -194,8 +194,7 @@ namespace Exiv2 {
@param ifdId IFD id
@return The title (label) of the tag.
*/
static const char* tagTitle(uint16_t tag, IfdId ifdId)
{ return tagLabel(tag, ifdId); }
static const char* tagTitle(uint16_t tag, IfdId ifdId);
/*!
@brief Return the title (label) of the tag.