From cc35f01600844b3a0236e7b5297fbe64ad5b5e45 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Sun, 19 Jan 2020 13:04:08 -0700 Subject: [PATCH] fix an ambiguity warning/error thing --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 87cd9d4..463917c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,7 +84,7 @@ pub use arrayvec::*; #[cfg(feature = "alloc")] mod tinyvec; #[cfg(feature = "alloc")] -pub use tinyvec::*; +pub use crate::tinyvec::*; // Replace with mem::take as soon as MSRV allows it fn take(from: &mut T) -> T {