diff options
| author | est31 <MTest31@outlook.com> | 2017-06-28 02:41:24 +0200 |
|---|---|---|
| committer | est31 <MTest31@outlook.com> | 2017-07-02 13:53:29 +0200 |
| commit | 1561954ea4c403ce7ea54cb83c944857c255b909 (patch) | |
| tree | f89cf150b148e8dcb557105ea43a090d42f72e32 /src/doc | |
| parent | eb5fb21bd5871a0dd3bb7bc135bc1a083ad32292 (diff) | |
| download | rust-1561954ea4c403ce7ea54cb83c944857c255b909.tar.gz rust-1561954ea4c403ce7ea54cb83c944857c255b909.zip | |
Documentation
Diffstat (limited to 'src/doc')
| -rw-r--r-- | src/doc/unstable-book/src/language-features/lang-items.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/doc/unstable-book/src/language-features/lang-items.md b/src/doc/unstable-book/src/language-features/lang-items.md index 375b8bd6b82..a2368ee5f4a 100644 --- a/src/doc/unstable-book/src/language-features/lang-items.md +++ b/src/doc/unstable-book/src/language-features/lang-items.md @@ -143,7 +143,8 @@ pub extern fn rust_eh_unwind_resume() { #[no_mangle] pub extern fn rust_begin_panic(_msg: core::fmt::Arguments, _file: &'static str, - _line: u32) -> ! { + _line: u32, + _column: u32) -> ! { unsafe { intrinsics::abort() } } ``` @@ -187,7 +188,8 @@ pub extern fn rust_eh_unwind_resume() { #[no_mangle] pub extern fn rust_begin_panic(_msg: core::fmt::Arguments, _file: &'static str, - _line: u32) -> ! { + _line: u32, + _column: u32) -> ! { unsafe { intrinsics::abort() } } ``` |
