Remove redundant initialization
This commit is contained in:
4
3rdparty/taglib/ape/apetag.cpp
vendored
4
3rdparty/taglib/ape/apetag.cpp
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user