summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2020-02-26 22:04:41 +0100
committerNeal H. Walfield <neal@pep.foundation>2020-02-26 22:04:41 +0100
commitd8795a3db08c26239ce103991d8eada176fd3e38 (patch)
tree2bb87921b87fca92347248778fd64523a80ebb47
parent761ca543c6d4e45b3277ef43877f7efd067a8104 (diff)
openpgp: Fix macro.
-rw-r--r--openpgp/src/packet/key/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/packet/key/mod.rs b/openpgp/src/packet/key/mod.rs
index 0b71663b..26d3501e 100644
--- a/openpgp/src/packet/key/mod.rs
+++ b/openpgp/src/packet/key/mod.rs
@@ -447,7 +447,7 @@ macro_rules! convert_ref {
macro_rules! create_part_conversions {
( $Key:ident<$( $l:lifetime ),*; $( $g:ident ),*>) => {
- create_part_conversions!($Key<$($l,)*; $($g,)*> where );
+ create_part_conversions!($Key<$($l),*; $($g),*> where );
};
( $Key:ident<$( $l:lifetime ),*; $( $g:ident ),*> where $( $w:ident: $c:path ),* ) => {
// Convert between two KeyParts for a constant KeyRole.