Uh oh!
There was an error while loading. Please reload this page.
make #[unwind] attribute specify expectations more clearly - #48380
Conversation
nikomatsakis
commented
Feb 20, 2018
rust-highfive
commented
Feb 20, 2018
(rust_highfive has picked a reviewer for you, use r? to override) |
a6cfafc to
175619aCompared8287cf to
2dadb12CompareYou can now choose between the following: - `#[unwind(allowed)]` - `#[unwind(aborts)]` Per rust-lang#48251, the default is `#[unwind(allowed)]`, though I think we should change this eventually.
2dadb12 to
a47fd3dComparenikomatsakis
commented
Feb 21, 2018
alexcrichton
commented
Feb 26, 2018
@bors: r+ Thanks @nikomatsakis! I hope that soon this won't be necessary in the sense that users won't have to decorate apis with attributes in an on-demand fashion, but this is all unstable anyway so seems like a fine interim solution! |
bors
commented
Feb 26, 2018
📋 Looks like this PR is still in progress, ignoring approval |
#[unwind] attribute specify expectations more clearly#[unwind] attribute specify expectations more clearlynikomatsakis
commented
Feb 27, 2018
@bors r=acrichto |
bors
commented
Feb 27, 2018
📌 Commit 566c6ac has been approved by |
RalfJung
commented
Aug 25, 2019
Even with this PR, the logic in |
You can now choose between the following:
#[unwind(allowed)]#[unwind(aborts)]Per #48251, the default is
#[unwind(allowed)], thoughI think we should change this eventually.