You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is only called from within Rust so never crosses the FFI barrier and is caught by the rust runtime. But I am not sure if this is already UB because it is inside an extern block 🤔 .
Prior to this RFC, any unwinding operation that crossed an extern "C" boundary, either from a panic! "escaping" from a Rust function defined with extern "C" or by entering Rust from another language via an entrypoint declared with extern "C", caused undefined behavior.
https://github.com/MaikKlein/ash/blob/b7aff3b432d853528a47bf99fa3e7f0d841c4112/ash/src/vk/features.rs#L87
These should be
eprintln!
followed byprocess::exit
.The text was updated successfully, but these errors were encountered: