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

@@ -35,7 +35,7 @@ using namespace IT;
class IT::File::FilePrivate {
public:
explicit FilePrivate(AudioProperties::ReadStyle propertiesStyle) : tag(), properties(propertiesStyle) {}
explicit FilePrivate(AudioProperties::ReadStyle propertiesStyle) : properties(propertiesStyle) {}
Mod::Tag tag;
IT::Properties properties;