mirror of
https://github.com/taglib/taglib.git
synced 2026-02-14 12:13:07 -05:00
clang-tidy: remove redundant initializations
Found with readability-redundant-member-init Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
@ -61,13 +61,11 @@ public:
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Ogg::XiphComment::XiphComment() :
|
||||
TagLib::Tag(),
|
||||
d(new XiphCommentPrivate())
|
||||
{
|
||||
}
|
||||
|
||||
Ogg::XiphComment::XiphComment(const ByteVector &data) :
|
||||
TagLib::Tag(),
|
||||
d(new XiphCommentPrivate())
|
||||
{
|
||||
parse(data);
|
||||
|
||||
Reference in New Issue
Block a user