diff --git a/source/SoundTouch/FIRFilter.cpp b/source/SoundTouch/FIRFilter.cpp index 5ef3c0f..b18db19 100644 --- a/source/SoundTouch/FIRFilter.cpp +++ b/source/SoundTouch/FIRFilter.cpp @@ -181,7 +181,7 @@ void FIRFilter::setCoefficients(const SAMPLETYPE *coeffs, uint newLength, uint u assert(length == newLength); resultDivFactor = uResultDivFactor; - resultDivider = (SAMPLETYPE)pow(2, resultDivFactor); + resultDivider = (SAMPLETYPE)::pow(2, resultDivFactor); delete[] filterCoeffs; filterCoeffs = new SAMPLETYPE[length];