Change the rt::unwind line argument type from usize to u32.

This commit is contained in:
Ryan Prichard
2015-04-11 02:46:57 -07:00
parent c87ec1edb1
commit ef25b7d538
6 changed files with 75 additions and 11 deletions

View File

@@ -38,7 +38,7 @@
//! provided by the [rlibc crate](https://crates.io/crates/rlibc).
//!
//! * `rust_begin_unwind` - This function takes three arguments, a
//! `fmt::Arguments`, a `&str`, and a `usize`. These three arguments dictate
//! `fmt::Arguments`, a `&str`, and a `u32`. These three arguments dictate
//! the panic message, the file at which panic was invoked, and the line.
//! It is up to consumers of this core library to define this panic
//! function; it is only required to never return.