From 92a584177d1572b8232c3fdd7182c54052a2feb0 Mon Sep 17 00:00:00 2001 From: Marko Mijalkovic Date: Sat, 23 Apr 2022 14:41:47 -0400 Subject: [PATCH] Inline core::panic::Location methods --- library/core/src/panic/location.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/library/core/src/panic/location.rs b/library/core/src/panic/location.rs index 714e9b73c78..8eefd9ff20d 100644 --- a/library/core/src/panic/location.rs +++ b/library/core/src/panic/location.rs @@ -83,6 +83,7 @@ impl<'a> Location<'a> { #[stable(feature = "track_caller", since = "1.46.0")] #[rustc_const_unstable(feature = "const_caller_location", issue = "76156")] #[track_caller] + #[inline] pub const fn caller() -> &'static Location<'static> { crate::intrinsics::caller_location() } @@ -122,6 +123,7 @@ impl<'a> Location<'a> { /// ``` #[must_use] #[stable(feature = "panic_hooks", since = "1.10.0")] + #[inline] pub fn file(&self) -> &str { self.file } @@ -145,6 +147,7 @@ impl<'a> Location<'a> { /// ``` #[must_use] #[stable(feature = "panic_hooks", since = "1.10.0")] + #[inline] pub fn line(&self) -> u32 { self.line } @@ -168,6 +171,7 @@ impl<'a> Location<'a> { /// ``` #[must_use] #[stable(feature = "panic_col", since = "1.25.0")] + #[inline] pub fn column(&self) -> u32 { self.col }