Add string-representation for all types in tagDataTypeString()

This commit is contained in:
Martchus 2022-06-19 17:39:32 +02:00
parent 08570aea32
commit 449ad034de
1 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,10 @@ std::string_view tagDataTypeString(TagDataType dataType)
return "picture";
case TagDataType::Binary:
return "binary";
case TagDataType::Popularity:
return "popularity";
case TagDataType::UnsignedInteger:
return "unsigned integer";
default:
return "undefined";
}