From c534193857945ef63efed7b52b8d8bde42c70e93 Mon Sep 17 00:00:00 2001 From: Azalea Colburn Date: Tue, 2 Dec 2025 15:17:02 -0800 Subject: [PATCH] Remove references to deprecated unsafe code guidelines --- src/other-reprs.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/other-reprs.md b/src/other-reprs.md index 6b397c9..260bc4a 100644 --- a/src/other-reprs.md +++ b/src/other-reprs.md @@ -1,7 +1,6 @@ # Alternative representations Rust allows you to specify alternative data layout strategies from the default. -There's also the [unsafe code guidelines] (note that it's **NOT** normative). ## repr(C) @@ -160,7 +159,6 @@ kinds of concurrent code). This is a modifier on `repr(C)` and `repr(Rust)`. It is incompatible with `repr(packed)`. -[unsafe code guidelines]: https://rust-lang.github.io/unsafe-code-guidelines/layout.html [drop flags]: drop-flags.html [ub loads]: https://github.com/rust-lang/rust/issues/27060 [issue-60405]: https://github.com/rust-lang/rust/issues/60405