-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
bevy_utils::default abbreviation lacks warning #8879
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
Comments
Hmm, I wonder if this is something we can fix ourselves. I suspect that this is ultimately blocked on changes upstream in |
Still very useful to have this issue: it'll show up in the search results! |
4 tasks
This is known as a Rust issue. |
This issue is still occuring in 1.15.2 |
sheesh, just encountered it. nasty bugger, one of the rare instances gdb saved my ass using rust |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bevy version
0.10.1
What you did
What went wrong
The previous code overflows the stack without warning.
Additional information
If
..Default::default()
is used instead of..default()
, the function gives a warningfunction cannot return without recursing
.The text was updated successfully, but these errors were encountered: