We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GCC now will warn about this, preventing compilation with all warnings enabled.
IRLib2/IRLib2/IRLibDecodeBase.cpp
Line 56 in 514db05
@cyborg5 -- Is this code intended to be:
if(interval>0) { LowSpace=min(LowSpace, interval); HiSpace=max (HiSpace, interval); }
It is clearly formatted to suggest the entire line is gated by the if statement. However, the current code (if formatted more commonly) resolves as:
if(interval>0) { LowSpace=min(LowSpace, interval); } HiSpace=max (HiSpace, interval);
Thanks for helping know which code is the correct fix!
See also adafruit/Adafruit_CircuitPlayground#63
The text was updated successfully, but these errors were encountered:
No branches or pull requests
GCC now will warn about this, preventing compilation with all warnings enabled.
IRLib2/IRLib2/IRLibDecodeBase.cpp
Line 56 in 514db05
@cyborg5 -- Is this code intended to be:
It is clearly formatted to suggest the entire line is gated by the if statement. However, the current code (if formatted more commonly) resolves as:
Thanks for helping know which code is the correct fix!
See also adafruit/Adafruit_CircuitPlayground#63
The text was updated successfully, but these errors were encountered: