- use std
git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@896 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
+1
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user