Remove redundant initialization

This commit is contained in:
Jonas Kvinge
2020-06-15 00:11:52 +02:00
parent 13b60351a6
commit 56caab4461
21 changed files with 32 additions and 38 deletions

View File

@@ -86,9 +86,9 @@ class APE::Tag::TagPrivate {
// public methods
////////////////////////////////////////////////////////////////////////////////
APE::Tag::Tag() : Strawberry_TagLib::TagLib::Tag(), d(new TagPrivate()) {}
APE::Tag::Tag() : d(new TagPrivate()) {}
APE::Tag::Tag(Strawberry_TagLib::TagLib::File *file, long footerLocation) : Strawberry_TagLib::TagLib::Tag(), d(new TagPrivate()) {
APE::Tag::Tag(Strawberry_TagLib::TagLib::File *file, long footerLocation) : d(new TagPrivate()) {
d->file = file;
d->footerLocation = footerLocation;