remove unused typedefs (#1138)

This was done in C++98 times. No longer needed with auto.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2023-09-07 09:02:55 -07:00
committed by GitHub
parent 528b84fbde
commit 23186f24ff
3 changed files with 3 additions and 18 deletions

View File

@ -35,16 +35,6 @@
using namespace TagLib;
namespace
{
typedef Ogg::FieldListMap::Iterator FieldIterator;
typedef Ogg::FieldListMap::ConstIterator FieldConstIterator;
typedef List<FLAC::Picture *> PictureList;
typedef PictureList::Iterator PictureIterator;
typedef PictureList::ConstIterator PictureConstIterator;
} // namespace
class Ogg::XiphComment::XiphCommentPrivate
{
public:
@ -56,7 +46,7 @@ public:
FieldListMap fieldListMap;
String vendorID;
String commentField;
PictureList pictureList;
List<FLAC::Picture *> pictureList;
};
////////////////////////////////////////////////////////////////////////////////