Skip to content

Commit

Permalink
Remove useless ?Sized bound
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoxc committed Apr 10, 2019
1 parent 04762dd commit 223f1c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libserialize/serialize.rs
Expand Up @@ -911,5 +911,5 @@ impl<T: UseSpecializedDecodable> Decodable for T {
impl<'a, T: ?Sized + Encodable> UseSpecializedEncodable for &'a T {} impl<'a, T: ?Sized + Encodable> UseSpecializedEncodable for &'a T {}
impl<T: ?Sized + Encodable> UseSpecializedEncodable for Box<T> {} impl<T: ?Sized + Encodable> UseSpecializedEncodable for Box<T> {}
impl<T: Decodable> UseSpecializedDecodable for Box<T> {} impl<T: Decodable> UseSpecializedDecodable for Box<T> {}
impl<'a, T: ?Sized + Decodable> UseSpecializedDecodable for &'a T {} impl<'a, T: Decodable> UseSpecializedDecodable for &'a T {}
impl<'a, T: ?Sized + Decodable> UseSpecializedDecodable for &'a [T] {} impl<'a, T: Decodable> UseSpecializedDecodable for &'a [T] {}

0 comments on commit 223f1c7

Please sign in to comment.