mirror of
https://github.com/azahar-emu/soundtouch
synced 2025-11-06 23:20: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…
x
Reference in New Issue
Block a user