From 443aec74f1aa14ae0a3a8558bfe413072f4a4f83 Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Sat, 8 Jun 2019 18:48:58 +0200 Subject: [PATCH] Eliminate a deprecation warning --- src/connection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.rs b/src/connection.rs index cb55a23..b956477 100644 --- a/src/connection.rs +++ b/src/connection.rs @@ -8,7 +8,7 @@ use {Result, Statement}; /// A database connection. pub struct Connection { raw: *mut ffi::sqlite3, - busy_callback: Option bool>>, + busy_callback: Option bool>>, phantom: PhantomData, }