Remove redundant initialization
This commit is contained in:
4
3rdparty/taglib/mpeg/id3v1/id3v1tag.cpp
vendored
4
3rdparty/taglib/mpeg/id3v1/id3v1tag.cpp
vendored
@@ -80,9 +80,9 @@ ByteVector ID3v1::StringHandler::render(const String &s) const {
|
||||
// public methods
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
ID3v1::Tag::Tag() : Strawberry_TagLib::TagLib::Tag(), d(new TagPrivate()) {}
|
||||
ID3v1::Tag::Tag() : d(new TagPrivate()) {}
|
||||
|
||||
ID3v1::Tag::Tag(File *file, long tagOffset) : Strawberry_TagLib::TagLib::Tag(), d(new TagPrivate()) {
|
||||
ID3v1::Tag::Tag(File *file, long tagOffset) : d(new TagPrivate()) {
|
||||
|
||||
d->file = file;
|
||||
d->tagOffset = tagOffset;
|
||||
|
||||
4
3rdparty/taglib/mpeg/id3v2/id3v2tag.cpp
vendored
4
3rdparty/taglib/mpeg/id3v2/id3v2tag.cpp
vendored
@@ -99,11 +99,11 @@ String Latin1StringHandler::parse(const ByteVector &data) const {
|
||||
// public members
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
ID3v2::Tag::Tag() : Strawberry_TagLib::TagLib::Tag(), d(new TagPrivate()) {
|
||||
ID3v2::Tag::Tag() : d(new TagPrivate()) {
|
||||
d->factory = FrameFactory::instance();
|
||||
}
|
||||
|
||||
ID3v2::Tag::Tag(File *file, long tagOffset, const FrameFactory *factory) : Strawberry_TagLib::TagLib::Tag(), d(new TagPrivate()) {
|
||||
ID3v2::Tag::Tag(File *file, long tagOffset, const FrameFactory *factory) : d(new TagPrivate()) {
|
||||
d->factory = factory;
|
||||
d->file = file;
|
||||
d->tagOffset = tagOffset;
|
||||
|
||||
Reference in New Issue
Block a user