From bc18d99232b4d049e24d64ae228f0ee0c01fcebd Mon Sep 17 00:00:00 2001 From: Mazdak Date: Wed, 22 Nov 2017 07:21:30 +0100 Subject: [PATCH] Box::leak: update unstable issue number (46179). --- src/liballoc/boxed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index c76f51057ff9..7910c6b61f3c 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -409,7 +409,7 @@ impl Box { /// } /// ``` #[unstable(feature = "box_leak", reason = "needs an FCP to stabilize", - issue = "0")] + issue = "46179")] #[inline] pub fn leak<'a>(b: Box) -> &'a mut T where