Remove default for SliceBuf<T>

This commit is contained in:
Carl Lerche
2016-11-02 14:31:44 -07:00
parent 57e84f267b
commit 11fe277c0d
+1 -1
View File
@@ -13,7 +13,7 @@ use std::fmt;
///
/// This `Buf` is better suited for cases where there is a clear delineation
/// between reading and writing.
pub struct SliceBuf<T = Box<[u8]>> {
pub struct SliceBuf<T> {
// Contiguous memory
mem: T,
// Current read position