Skip to content

Commit

Permalink
Minor update to remove explicit lifetime. (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
BanjoFox committed Dec 27, 2023
2 parents f02d5cb + 2b1d2fc commit 27634fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aardwolf-models/src/sql_types/timezone.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ where
DB: Backend,
str: serialize::ToSql<Text, DB>,
{
fn to_sql<'b>(&self, out: &mut serialize::Output<'b, '_, DB>) -> serialize::Result {
fn to_sql(&self, out: &mut serialize::Output<'_, '_, DB>) -> serialize::Result {
self.0.name().to_sql(out)
}
}
Expand Down

0 comments on commit 27634fa

Please sign in to comment.