From 31133835a5bfc4b0bf013bd6b82eb2124c4852cc Mon Sep 17 00:00:00 2001 From: Lokathor Date: Sat, 11 Jan 2020 18:50:00 -0700 Subject: [PATCH] be 1.36 compatible --- src/tiny_vec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tiny_vec.rs b/src/tiny_vec.rs index 262597e..db4e933 100644 --- a/src/tiny_vec.rs +++ b/src/tiny_vec.rs @@ -625,7 +625,7 @@ impl From> for TinyVec { #[inline(always)] #[must_use] fn from(arr: ArrayishVec) -> Self { - Self::Inline(arr) + TinyVec::Inline(arr) } }