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

@@ -62,11 +62,11 @@ ByteVector RIFF::Info::StringHandler::render(const String &s) const {
// public members
////////////////////////////////////////////////////////////////////////////////
RIFF::Info::Tag::Tag(const ByteVector &data) : Strawberry_TagLib::TagLib::Tag(), d(new TagPrivate()) {
RIFF::Info::Tag::Tag(const ByteVector &data) : d(new TagPrivate()) {
parse(data);
}
RIFF::Info::Tag::Tag() : Strawberry_TagLib::TagLib::Tag(), d(new TagPrivate()) {}
RIFF::Info::Tag::Tag() : d(new TagPrivate()) {}
RIFF::Info::Tag::~Tag() {
delete d;