1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-09-06 07:07:48 -04:00

WFM modulator: Windows build: fixed compile error with MinGW

This commit is contained in:
f4exb 2016-12-19 08:40:23 +01:00
parent 9b6aae348e
commit d5019e916c
2 changed files with 2 additions and 2 deletions

View File

@ -215,7 +215,7 @@ void WFMMod::pullAF(Complex& sample)
} }
} }
void WFMMod::calculateLevel(Real& sample) void WFMMod::calculateLevel(const Real& sample)
{ {
if (m_levelCalcCount < m_levelNbSamples) if (m_levelCalcCount < m_levelNbSamples)
{ {

View File

@ -326,7 +326,7 @@ private:
void apply(); void apply();
void pullAF(Complex& sample); void pullAF(Complex& sample);
void calculateLevel(Real& sample); void calculateLevel(const Real& sample);
void openFileStream(); void openFileStream();
void seekFileStream(int seekPercentage); void seekFileStream(int seekPercentage);
}; };