summaryrefslogtreecommitdiffstats
path: root/openpgp/src/cert/parser/low_level/grammar.lalrpop
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/cert/parser/low_level/grammar.lalrpop')
-rw-r--r--openpgp/src/cert/parser/low_level/grammar.lalrpop8
1 files changed, 4 insertions, 4 deletions
diff --git a/openpgp/src/cert/parser/low_level/grammar.lalrpop b/openpgp/src/cert/parser/low_level/grammar.lalrpop
index d1b41be5..f1bf420e 100644
--- a/openpgp/src/cert/parser/low_level/grammar.lalrpop
+++ b/openpgp/src/cert/parser/low_level/grammar.lalrpop
@@ -61,10 +61,10 @@ pub Cert: Option<Cert> = {
self_revocations: vec![],
other_revocations: vec![],
},
- subkeys: ComponentBundles::new(),
- userids: ComponentBundles::new(),
- user_attributes: ComponentBundles::new(),
- unknowns: ComponentBundles::new(),
+ subkeys: ComponentBundles::default(),
+ userids: ComponentBundles::default(),
+ user_attributes: ComponentBundles::default(),
+ unknowns: ComponentBundles::default(),
bad: vec![],
};