aboutsummaryrefslogtreecommitdiff
path: root/src/util/small_cstr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/small_cstr.rs')
-rw-r--r--src/util/small_cstr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/small_cstr.rs b/src/util/small_cstr.rs
index 4543c62..78e43bd 100644
--- a/src/util/small_cstr.rs
+++ b/src/util/small_cstr.rs
@@ -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]