1
0
mirror of https://github.com/RPCS3/soundtouch.git synced 2024-11-09 20:33:03 +01:00

Added :: before pow to resolve namespace ambiguity

This commit is contained in:
oparviai 2008-05-09 04:48:34 +00:00
parent da6bd9641c
commit 9a273df119

View File

@ -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];