about summary refs log tree commit diff
path: root/library/core/src/ptr/mod.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-09-14 13:44:02 +0200
committerRalf Jung <post@ralfj.de>2024-10-21 15:22:17 +0100
commit56ee492a6e7a917b2b3f888e33dd52a13d3ecb64 (patch)
tree556522c0acb1a55afe973cc12a848f3729783f35 /library/core/src/ptr/mod.rs
parentc3e928d8ddc73f5681778208f6c44cf958694e8b (diff)
downloadrust-56ee492a6e7a917b2b3f888e33dd52a13d3ecb64.tar.gz
rust-56ee492a6e7a917b2b3f888e33dd52a13d3ecb64.zip
move strict provenance lints to new feature gate, remove old feature gates
Diffstat (limited to 'library/core/src/ptr/mod.rs')
-rw-r--r--library/core/src/ptr/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/library/core/src/ptr/mod.rs b/library/core/src/ptr/mod.rs
index 72a77ea6b18..f769b515877 100644
--- a/library/core/src/ptr/mod.rs
+++ b/library/core/src/ptr/mod.rs
@@ -290,8 +290,6 @@
 //! represent the tagged pointer as an actual pointer and not a `usize`*. For instance:
 //!
 //! ```
-//! #![feature(strict_provenance)]
-//!
 //! unsafe {
 //!     // A flag we want to pack into our pointer
 //!     static HAS_DATA: usize = 0x1;