-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
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
Build warnings, potential bugs #11
Comments
Yes, == was a bug. I corrected it 10 minutes ago :) |
I have cleaned the code a little bit in v10.2. and the "==" typo was fixed. |
sambrightman
added a commit
to sambrightman/FREEC
that referenced
this issue
Dec 9, 2016
* convert some CR/LF line endings to LF * be explicit about assignment operations within conditionals * remove some unused variables * add const to string literal argument types Helps fix BoevaLab#11.
sambrightman
added a commit
to sambrightman/FREEC
that referenced
this issue
Dec 9, 2016
* convert some CR/LF line endings to LF * be explicit about assignment operations within conditionals * remove some unused variables * add const to string literal argument types Helps fix BoevaLab#11.
Great! I've done some more in #12. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When building FREEC with a modern toolchain, I see quite a few suspicious warnings:
https://gist.github.com/sambrightman/dbb4b3d3e260672b0ed57a89c8869c79
==
instead of=
looks like a clear bug&&
/||
precedence issues look okay but some look suspicious (probably best to clarify all of them with parentheses)For me the compiler is:
but recent versions of GCC should also warn about such things.
The text was updated successfully, but these errors were encountered: