Remove redundant initialization
This commit is contained in:
4
3rdparty/taglib/ogg/xiphcomment.cpp
vendored
4
3rdparty/taglib/ogg/xiphcomment.cpp
vendored
@@ -57,9 +57,9 @@ class Ogg::XiphComment::XiphCommentPrivate {
|
||||
// public members
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Ogg::XiphComment::XiphComment() : Strawberry_TagLib::TagLib::Tag(), d(new XiphCommentPrivate()) {}
|
||||
Ogg::XiphComment::XiphComment() : d(new XiphCommentPrivate()) {}
|
||||
|
||||
Ogg::XiphComment::XiphComment(const ByteVector &data) : Strawberry_TagLib::TagLib::Tag(), d(new XiphCommentPrivate()) {
|
||||
Ogg::XiphComment::XiphComment(const ByteVector &data) : d(new XiphCommentPrivate()) {
|
||||
parse(data);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user