clang-tidy: remove redundant initializations

Found with readability-redundant-member-init

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2021-06-16 18:24:05 -07:00
committed by Urs Fleisch
parent 17e299350a
commit b77e828d4b
16 changed files with 9 additions and 24 deletions

View File

@ -37,7 +37,7 @@ class IT::File::FilePrivate
{
public:
FilePrivate(AudioProperties::ReadStyle propertiesStyle)
: tag(), properties(propertiesStyle)
: properties(propertiesStyle)
{
}