Skip to content

Commit 8093b63

Browse files
committed
Add tracking issue for panic_oom_payload
This was missed in rust-lang#109507.
1 parent 3462f79 commit 8093b63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/alloc/src/alloc.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ pub(crate) unsafe fn box_free<T: ?Sized, A: Allocator>(ptr: Unique<T>, alloc: A)
349349
}
350350

351351
/// Payload passed to the panic handler when `handle_alloc_error` is called.
352-
#[unstable(feature = "panic_oom_payload", issue = "none")]
352+
#[unstable(feature = "panic_oom_payload", issue = "110730")]
353353
#[derive(Debug)]
354354
pub struct AllocErrorPanicPayload {
355355
layout: Layout,
@@ -364,7 +364,7 @@ impl AllocErrorPanicPayload {
364364
}
365365

366366
/// Returns the [`Layout`] of the allocation attempt that caused the error.
367-
#[unstable(feature = "panic_oom_payload", issue = "none")]
367+
#[unstable(feature = "panic_oom_payload", issue = "110730")]
368368
pub fn layout(&self) -> Layout {
369369
self.layout
370370
}

0 commit comments

Comments
 (0)