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
Under Apple LLVM version 8.0.0 (clang-800.0.38) Target: x86_64-apple-darwin15.6.0
make put this warning
trietool.c:128:13: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare] if (res < 0) 1 warning generated.
trietool.c:128:13: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare] if (res < 0)
1 warning generated.
128c128 < if (res < 0) --- > if (res == (size_t) -1)
The text was updated successfully, but these errors were encountered:
Sorry. Duplicate of Issue #3
Close.
Sorry, something went wrong.
No branches or pull requests
What happened
Under
Apple LLVM version 8.0.0 (clang-800.0.38)
Target: x86_64-apple-darwin15.6.0
make put this warning
Possible cause
Proposed fix
The text was updated successfully, but these errors were encountered: