Skip to content

Commit 223f1c7

Browse files
committed
Remove useless ?Sized bound
1 parent 04762dd commit 223f1c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libserialize/serialize.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -911,5 +911,5 @@ impl<T: UseSpecializedDecodable> Decodable for T {
911911
impl<'a, T: ?Sized + Encodable> UseSpecializedEncodable for &'a T {}
912912
impl<T: ?Sized + Encodable> UseSpecializedEncodable for Box<T> {}
913913
impl<T: Decodable> UseSpecializedDecodable for Box<T> {}
914-
impl<'a, T: ?Sized + Decodable> UseSpecializedDecodable for &'a T {}
915-
impl<'a, T: ?Sized + Decodable> UseSpecializedDecodable for &'a [T] {}
914+
impl<'a, T: Decodable> UseSpecializedDecodable for &'a T {}
915+
impl<'a, T: Decodable> UseSpecializedDecodable for &'a [T] {}

0 commit comments

Comments
 (0)