1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-04 14:19:30 +02:00

Fix warning treated as error in Mac build

This commit is contained in:
Paul Licameli 2019-11-27 21:38:59 -05:00
parent fe7434bc9f
commit 1add6f3930

View File

@ -132,7 +132,8 @@ void EBUR128::NextSample()
// idx is within ]-inf, HIST_BIN_COUNT-1], discard indices below 0 // idx is within ]-inf, HIST_BIN_COUNT-1], discard indices below 0
// as they are below the EBU R128 absolute threshold anyway. // as they are below the EBU R128 absolute threshold anyway.
if(idx >= 0 && idx < HIST_BIN_COUNT) if(// idx >= 0 &&
idx < HIST_BIN_COUNT)
++mLoudnessHist[idx]; ++mLoudnessHist[idx];
} }
} }