Skip to content

Commit 5fcaf95

Browse files
committed
Auto merge of #27385 - chris-morgan:core-panic-use-$crate, r=alexcrichton
I’ve been sitting on this one for ages now. Silly me, if only I had got on and submitted it earlier it’d be into the stable release by now…
2 parents 87055a6 + fc5b79c commit 5fcaf95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ macro_rules! panic {
1717
);
1818
($msg:expr) => ({
1919
static _MSG_FILE_LINE: (&'static str, &'static str, u32) = ($msg, file!(), line!());
20-
::core::panicking::panic(&_MSG_FILE_LINE)
20+
$crate::panicking::panic(&_MSG_FILE_LINE)
2121
});
2222
($fmt:expr, $($arg:tt)*) => ({
2323
// The leading _'s are to avoid dead code warnings if this is
2424
// used inside a dead function. Just `#[allow(dead_code)]` is
2525
// insufficient, since the user may have
2626
// `#[forbid(dead_code)]` and which cannot be overridden.
2727
static _FILE_LINE: (&'static str, u32) = (file!(), line!());
28-
::core::panicking::panic_fmt(format_args!($fmt, $($arg)*), &_FILE_LINE)
28+
$crate::panicking::panic_fmt(format_args!($fmt, $($arg)*), &_FILE_LINE)
2929
});
3030
}
3131

0 commit comments

Comments
 (0)