about summary refs log tree commit diff
path: root/src/liballoc/raw_vec.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2020-06-23 00:33:54 -0700
committerGitHub <noreply@github.com>2020-06-23 00:33:54 -0700
commitae38698e7fca180d612dc11be12023076e23236c (patch)
tree0d6facabc6acf33196c2d87b81ff79035deffc32 /src/liballoc/raw_vec.rs
parent903823c59bcb9890df2a6fadcf7aa22f74eed67f (diff)
parente465b227d15fec8f16863ba8e77191ceb5c8670b (diff)
downloadrust-ae38698e7fca180d612dc11be12023076e23236c.tar.gz
rust-ae38698e7fca180d612dc11be12023076e23236c.zip
Rollup merge of #73398 - oli-obk:const_raw_ptr_cmp, r=varkor,RalfJung,nagisa
A way forward for pointer equality in const eval

r? @varkor on the first commit and @RalfJung on the second commit

cc #53020
Diffstat (limited to 'src/liballoc/raw_vec.rs')
-rw-r--r--src/liballoc/raw_vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/raw_vec.rs b/src/liballoc/raw_vec.rs
index 15e81f92887..67ebdcc9f33 100644
--- a/src/liballoc/raw_vec.rs
+++ b/src/liballoc/raw_vec.rs
@@ -60,7 +60,7 @@ impl<T> RawVec<T, Global> {
     /// `#[rustc_force_min_const_fn]` attribute which requires conformance
     /// with `min_const_fn` but does not necessarily allow calling it in
     /// `stable(...) const fn` / user code not enabling `foo` when
-    /// `#[rustc_const_unstable(feature = "foo", ..)]` is present.
+    /// `#[rustc_const_unstable(feature = "foo", issue = "01234")]` is present.
     pub const NEW: Self = Self::new();
 
     /// Creates the biggest possible `RawVec` (on the system heap)