Skip to content

Commit 6e80b9f

Browse files
committed
fix new warning about trailing semicolon in expression macros
1 parent 70991d4 commit 6e80b9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlx-macros/src/derives/attributes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ macro_rules! assert_attribute {
1515

1616
macro_rules! fail {
1717
($t:expr, $m:expr) => {
18-
return Err(syn::Error::new_spanned($t, $m));
18+
return Err(syn::Error::new_spanned($t, $m))
1919
};
2020
}
2121

0 commit comments

Comments
 (0)