]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #24212 - alexcrichton:destabilize-begin-unwind, r=huonw
authorManish Goregaokar <manishsmail@gmail.com>
Thu, 9 Apr 2015 10:24:28 +0000 (15:54 +0530)
committerManish Goregaokar <manishsmail@gmail.com>
Thu, 9 Apr 2015 18:54:43 +0000 (00:24 +0530)
commit5daee19eca622030c598042d9615df17d4ad035f
treee69748a12da9881b913c4ef90bf65ff23a8efd00
parent4e466e730b18645e73c2e4a841f6e675c82ceb22
parentec7c800d2fc0dc5918d325ae68d88c9708d20259
Rollup merge of #24212 - alexcrichton:destabilize-begin-unwind, r=huonw

 Now that we have a `#[allow_internal_unstable]` attribute for macros there's no
need for these two `begin_unwind` functions to be stable. Right now the `panic!`
interface is the only one we wish to stabilize, so remove the stability markers
from these functions.

While this is a breaking change, it is highly unlikely to break any actual code.
It is recommended to use the `panic!` macro instead if it breaks explicit calls
into `std::rt`.

[breaking-change]
cc #24208