about summary refs log tree commit diff
path: root/compiler/rustc_lint/messages.ftl
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-06-05 18:06:09 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-06-27 08:55:28 +1000
commitc053e8939bae9c052ff53f58e692408a8099df5d (patch)
tree5dfc86adce7558619aa6de246c38e67055e7b845 /compiler/rustc_lint/messages.ftl
parent4bc39f028d14c24b04dd17dc425432c6ec354536 (diff)
downloadrust-c053e8939bae9c052ff53f58e692408a8099df5d.tar.gz
rust-c053e8939bae9c052ff53f58e692408a8099df5d.zip
Remove the `box_pointers` lint.
As the comment says, this lint "is mostly historical, and not
particularly useful". It's not worth keeping it around.
Diffstat (limited to 'compiler/rustc_lint/messages.ftl')
-rw-r--r--compiler/rustc_lint/messages.ftl2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_lint/messages.ftl b/compiler/rustc_lint/messages.ftl
index 46cf87d1e3c..3e952558d29 100644
--- a/compiler/rustc_lint/messages.ftl
+++ b/compiler/rustc_lint/messages.ftl
@@ -56,8 +56,6 @@ lint_builtin_asm_labels = avoid using named labels in inline assembly
     .help = only local labels of the form `<number>:` should be used in inline asm
     .note = see the asm section of Rust By Example <https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels> for more information
 
-lint_builtin_box_pointers = type uses owned (Box type) pointers: {$ty}
-
 lint_builtin_clashing_extern_diff_name = `{$this}` redeclares `{$orig}` with a different signature
     .previous_decl_label = `{$orig}` previously declared here
     .mismatch_label = this signature doesn't match the previous declaration