You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wasn't a real -= real; intended? But that seems a bit strange (resulting in almost zero?).
The same warning in several places:
JAERO/DSP.cpp(549,16): warning: use of unary operator that may be intended as compound assignment (-=)
retval =- lastsoftstate;
^~
JAERO/mskdemodulator.cpp(461,18): warning: use of unary operator that may be intended as compound assignment (-=)
real =- real;
^~
JAERO/oqpskdemodulator.cpp(246,30): warning: use of unary operator that may be intended as compound assignment (-=)
st_iir_resonator.b[2]=- 0.0012845857864470789;
^~
Not sure about that last warning. But the first should be fixed by retval -= lastsoftstate;.
The text was updated successfully, but these errors were encountered:
While using
clang-cl
to build Jaero on Windows, I noticed these important warnings:Wasn't a
real -= real;
intended? But that seems a bit strange (resulting in almost zero?).The same warning in several places:
Not sure about that last warning. But the first should be fixed by
retval -= lastsoftstate;
.The text was updated successfully, but these errors were encountered: