Skip to content

Commit

Permalink
fix new warning about trailing semicolon in expression macros
Browse files Browse the repository at this point in the history
  • Loading branch information
abonander committed Oct 26, 2021
1 parent 70991d4 commit 6e80b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-macros/src/derives/attributes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ macro_rules! assert_attribute {

macro_rules! fail {
($t:expr, $m:expr) => {
return Err(syn::Error::new_spanned($t, $m));
return Err(syn::Error::new_spanned($t, $m))
};
}

Expand Down

0 comments on commit 6e80b9f

Please sign in to comment.