From 1add6f39300ad74dad13411bbd8720d9c35d1f11 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Wed, 27 Nov 2019 21:38:59 -0500 Subject: [PATCH] Fix warning treated as error in Mac build --- src/effects/EBUR128.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/effects/EBUR128.cpp b/src/effects/EBUR128.cpp index 0cf00bfff..59c2b955f 100644 --- a/src/effects/EBUR128.cpp +++ b/src/effects/EBUR128.cpp @@ -132,7 +132,8 @@ void EBUR128::NextSample() // idx is within ]-inf, HIST_BIN_COUNT-1], discard indices below 0 // 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]; } }