Work around clippy needless_update lint on attrs::Parser
diff --git a/syntax/attrs.rs b/syntax/attrs.rs
index 7dab263..18e92e2 100644
--- a/syntax/attrs.rs
+++ b/syntax/attrs.rs
@@ -14,6 +14,11 @@
pub namespace: Option<&'a mut Namespace>,
pub cxx_name: Option<&'a mut Option<Ident>>,
pub rust_name: Option<&'a mut Option<Ident>>,
+
+ // Suppress clippy needless_update lint ("struct update has no effect, all
+ // the fields in the struct have already been specified") when preemptively
+ // writing `..Default::default()`.
+ pub(crate) _more: (),
}
pub(super) fn parse(cx: &mut Errors, attrs: &[Attribute], mut parser: Parser) {