about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2024-10-31 11:39:27 +0100
committerMara Bos <m-ou.se@m-ou.se>2025-01-07 15:48:19 +0100
commite7bd340ba41a327510f36eff96776aaba73f0f60 (patch)
tree9c9e07c6423944b8379aee388d994a8639f3f6fe
parentfb546ee09b226bc4dd4b712d35a372d923c4fa54 (diff)
Switch missing_abi lint to warn-by-default.
-rw-r--r--compiler/rustc_lint_defs/src/builtin.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_lint_defs/src/builtin.rs b/compiler/rustc_lint_defs/src/builtin.rs
index 8399f4c12f4..0718842f1bb 100644
--- a/compiler/rustc_lint_defs/src/builtin.rs
+++ b/compiler/rustc_lint_defs/src/builtin.rs
@@ -3595,7 +3595,7 @@ declare_lint! {
     ///
     /// [Other ABIs]: https://doc.rust-lang.org/reference/items/external-blocks.html#abi
     pub MISSING_ABI,
-    Allow,
+    Warn,
     "No declared ABI for extern declaration"
 }