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
e.g.
https://github.com/rust-embedded/heapless/blob/cbd406eab8eaba37206cd9f4924b1e4bdf314d5d/src/vec.rs#L19C1-L20C1
push() is fallible. The Result should be used, even if it is just .ok()ed.
push()
Result
.ok()
The text was updated successfully, but these errors were encountered:
Do you know of an automated way to check for this? I can fix that specific example, but there are probably more in the codebase.
Sorry, something went wrong.
Not aware of anything other than what you already found: #416 (comment)
#441
No branches or pull requests
e.g.
https://github.com/rust-embedded/heapless/blob/cbd406eab8eaba37206cd9f4924b1e4bdf314d5d/src/vec.rs#L19C1-L20C1
push()
is fallible. TheResult
should be used, even if it is just.ok()
ed.The text was updated successfully, but these errors were encountered: