- use std

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@896 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-05-30 10:23:19 +00:00
parent 1c8b02b279
commit da9b8f2c90
+1 -1
View File
@@ -98,7 +98,7 @@ public:
x1 = abs(x);
x2 = abs(m_state[m_numTaps-1]);
m_power = max(RealScalar(0), m_power + (x1*x1 - m_xLast));
m_power = std::max(RealScalar(0), m_power + (x1*x1 - m_xLast));
m_xLast = x2*x2;
FirComplex::feed(x);