mirror of
				https://github.com/isar/rusqlite.git
				synced 2025-10-31 13:58:55 +08:00 
			
		
		
		
	Fix Clippy warnings
This commit is contained in:
		| @@ -884,7 +884,7 @@ pub fn dequote(s: &str) -> &str { | |||||||
|         return s; |         return s; | ||||||
|     } |     } | ||||||
|     match s.bytes().next() { |     match s.bytes().next() { | ||||||
|         Some(b) if b == b'"' || b == b'\'' => match s.bytes().rev().next() { |         Some(b) if b == b'"' || b == b'\'' => match s.bytes().next_back() { | ||||||
|             Some(e) if e == b => &s[1..s.len() - 1], // FIXME handle inner escaped quote(s) |             Some(e) if e == b => &s[1..s.len() - 1], // FIXME handle inner escaped quote(s) | ||||||
|             _ => s, |             _ => s, | ||||||
|         }, |         }, | ||||||
|   | |||||||
| @@ -1,4 +1,4 @@ | |||||||
| ///! Port of C [vtablog](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/vtablog.c) | //! Port of C [vtablog](http://www.sqlite.org/cgi/src/finfo?name=ext/misc/vtablog.c) | ||||||
| use std::default::Default; | use std::default::Default; | ||||||
| use std::marker::PhantomData; | use std::marker::PhantomData; | ||||||
| use std::os::raw::c_int; | use std::os::raw::c_int; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user