Minor fix for concat_comma (#464)

This commit is contained in:
Pierre Krieger
2018-09-06 16:31:15 +02:00
committed by GitHub
parent bccd710fb4
commit 601de6ab70

View File

@ -70,6 +70,9 @@ macro_rules! concat_comma {
($first:expr, $($rest:expr),*) => (
concat!($first $(, ',', $rest)*)
);
($elem:expr) => (
$elem
);
}
// TODO: there's no library in the Rust ecosystem that supports P-521, but the Go & JS