1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-21 16:11:11 +01:00

Uniform init in blockfile ctors (prevents implicit narrowings)

This commit is contained in:
Paul Licameli
2016-08-22 18:13:23 -04:00
parent 477d8d9d1d
commit 367ed1dfce
8 changed files with 19 additions and 18 deletions

View File

@@ -13,7 +13,7 @@
#include "../FileFormats.h"
SilentBlockFile::SilentBlockFile(sampleCount sampleLen):
BlockFile(wxFileNameWrapper{}, sampleLen)
BlockFile{ wxFileNameWrapper{}, sampleLen }
{
mMin = 0.;
mMax = 0.;