diff options
| author | Alice Ryhl <aliceryhl@google.com> | 2025-08-20 15:04:34 +0000 |
|---|---|---|
| committer | Alice Ryhl <aliceryhl@google.com> | 2025-08-29 08:33:54 +0000 |
| commit | 46727f4cb06c3496a541ee8517a24ef5cb77627c (patch) | |
| tree | bc96f342a66f1d6366915e2b10e400768bdbf9d7 /library/core/src/panic | |
| parent | 41f2b6b39e7526a28d50ff6918dda6de48add5e4 (diff) | |
Stabilize file_as_c_str
Diffstat (limited to 'library/core/src/panic')
| -rw-r--r-- | library/core/src/panic/location.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/core/src/panic/location.rs b/library/core/src/panic/location.rs index 7a68d393906..59358493444 100644 --- a/library/core/src/panic/location.rs +++ b/library/core/src/panic/location.rs @@ -193,8 +193,9 @@ impl<'a> Location<'a> { /// This is useful for interop with APIs that expect C/C++ `__FILE__` or /// `std::source_location::file_name`, both of which return a nul-terminated `const char*`. #[must_use] - #[unstable(feature = "file_with_nul", issue = "141727")] #[inline] + #[stable(feature = "file_with_nul", since = "CURRENT_RUSTC_VERSION")] + #[rustc_const_stable(feature = "file_with_nul", since = "CURRENT_RUSTC_VERSION")] pub const fn file_as_c_str(&self) -> &'a CStr { let filename = self.filename.as_ptr(); |
