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:
parent
da6bd9641c
commit
9a273df119
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user