mirror of
https://github.com/isar/rusqlite.git
synced 2025-09-15 04:02:18 +08:00
Clean code
Typos, deprecated code usages, ...
This commit is contained in:
@@ -5,7 +5,7 @@ use std::ffi::{CStr, CString, NulError};
|
||||
/// small enough. Also guarantees it's input is UTF-8 -- used for cases where we
|
||||
/// need to pass a NUL-terminated string to SQLite, and we have a `&str`.
|
||||
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
|
||||
pub(crate) struct SmallCString(smallvec::SmallVec<[u8; 16]>);
|
||||
pub(crate) struct SmallCString(SmallVec<[u8; 16]>);
|
||||
|
||||
impl SmallCString {
|
||||
#[inline]
|
||||
|
Reference in New Issue
Block a user