From 0802005fa5f304ffa5a740ab017d785b9e18969f Mon Sep 17 00:00:00 2001 From: Szymon Walter Date: Mon, 19 Mar 2018 17:05:01 +0100 Subject: [PATCH] uncomment `impl Buffer` for `&mut [T]` --- src/buffer/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buffer/mod.rs b/src/buffer/mod.rs index a4bd6dd..9051e66 100644 --- a/src/buffer/mod.rs +++ b/src/buffer/mod.rs @@ -258,7 +258,7 @@ macro_rules! impl_slice { }; } -//impl_slice!(&'a mut [T], 'a); +impl_slice!(&'b mut [T], 'b); impl_slice!(Vec); impl_slice!(Box<[T]>);