From 8558462b2629e0918797875bf0b6c8cb75b3bcf7 Mon Sep 17 00:00:00 2001 From: Banjo Fox Date: Wed, 30 Aug 2023 14:37:36 -0400 Subject: [PATCH] Minor update to remove explicit lifetime. --- aardwolf-models/src/sql_types/timezone.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aardwolf-models/src/sql_types/timezone.rs b/aardwolf-models/src/sql_types/timezone.rs index 5e46a80e..b69926b9 100644 --- a/aardwolf-models/src/sql_types/timezone.rs +++ b/aardwolf-models/src/sql_types/timezone.rs @@ -28,7 +28,7 @@ where DB: Backend, str: serialize::ToSql, { - 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) } }