Fix Bug introduced in #67 (#68)

This commit is contained in:
T0mstone 2021-04-10 18:54:59 +02:00 committed by Keavon Chambers
parent 21ffb3571e
commit 2497a21737
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ macro_rules! match_variant_name {
(match ($e:expr) { $($v:ident),* $(,)? }) => { (match ($e:expr) { $($v:ident),* $(,)? }) => {
match $e { match $e {
$( $(
$v { .. } => stringify!(v) $v { .. } => stringify!($v)
),* ),*
} }
}; };