Skip to content

Commit 3be769b

Browse files
committed
Auto merge of #1475 - gnzlbg:fix_build, r=gnzlbg
Remove unnecessary trailing semi-colon
2 parents dab1050 + 6f508f8 commit 3be769b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ macro_rules! f {
128128
})*) => ($(
129129
#[inline]
130130
pub unsafe extern fn $i($($arg: $argty),*) -> $ret {
131-
$($body);*
131+
$($body)*
132132
}
133133
)*)
134134
}

0 commit comments

Comments
 (0)