about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser/attr.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-07-27 06:32:36 +0000
committerbors <bors@rust-lang.org>2024-07-27 06:32:36 +0000
commita6796c10a1e84b83d2f3c1eea8ea71c995290deb (patch)
tree2e3af61e9cf97e5c33567d517ba2f5d53a1d2e64 /compiler/rustc_parse/src/parser/attr.rs
parentadbb89e238640c3d3279ef3efb86c7bf46295858 (diff)
parent822286f0758bea84b798e494b5b6103d288a3221 (diff)
downloadrust-a6796c10a1e84b83d2f3c1eea8ea71c995290deb.tar.gz
rust-a6796c10a1e84b83d2f3c1eea8ea71c995290deb.zip
Auto merge of #3768 - rust-lang:rustup-2024-07-27, r=RalfJung
Automatic Rustup
Diffstat (limited to 'compiler/rustc_parse/src/parser/attr.rs')
-rw-r--r--compiler/rustc_parse/src/parser/attr.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/compiler/rustc_parse/src/parser/attr.rs b/compiler/rustc_parse/src/parser/attr.rs
index 0b2c3044039..535b53a836e 100644
--- a/compiler/rustc_parse/src/parser/attr.rs
+++ b/compiler/rustc_parse/src/parser/attr.rs
@@ -457,14 +457,3 @@ impl<'a> Parser<'a> {
         Err(self.dcx().create_err(err))
     }
 }
-
-/// The attributes are complete if all attributes are either a doc comment or a
-/// builtin attribute other than `cfg_attr`.
-pub fn is_complete(attrs: &[ast::Attribute]) -> bool {
-    attrs.iter().all(|attr| {
-        attr.is_doc_comment()
-            || attr.ident().is_some_and(|ident| {
-                ident.name != sym::cfg_attr && rustc_feature::is_builtin_attr_name(ident.name)
-            })
-    })
-}