From 9a273df11989a0f4eb4e16b5546664129f0b0bb1 Mon Sep 17 00:00:00 2001 From: oparviai Date: Fri, 9 May 2008 04:48:34 +0000 Subject: [PATCH] Added :: before pow to resolve namespace ambiguity --- source/SoundTouch/FIRFilter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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];