clang-tidy: remove redundant initializations

Found with readability-redundant-member-init

Signed-off-by: Rosen Penev <[email protected]>
This commit is contained in:
Rosen Penev
2021-06-21 06:49:32 +02:00
committed by Urs Fleisch
parent 17e299350a
commit b77e828d4b
16 changed files with 9 additions and 24 deletions
-2
View File
@@ -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);