Skip to content
This repository was archived by the owner on Jan 18, 2026. It is now read-only.

Commit 9e8a35f

Browse files
committed
fix: revert expr -> expr_2021 because of no necessary
1 parent 1080df7 commit 9e8a35f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mania/src/utility/def_default.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#[macro_export]
22
macro_rules! dda {
3-
($struct:ident { $($field:ident $( : $value:expr_2021 )? ),* $(,)? }) => {
3+
($struct:ident { $($field:ident $( : $value:expr )? ),* $(,)? }) => {
44
$struct {
55
$(
66
$field: dda!(@value $field $( : $value )? )
@@ -9,7 +9,7 @@ macro_rules! dda {
99
}
1010
};
1111

12-
(@value $field:ident : $value:expr_2021) => {
12+
(@value $field:ident : $value:expr) => {
1313
$value
1414
};
1515

0 commit comments

Comments
 (0)