Skip to content

Commit 1c399db

Browse files
Remove comment questionnig Eq implementation
1 parent bc1853e commit 1c399db

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/vec.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1973,8 +1973,6 @@ where
19731973

19741974
// Implements Eq if underlying data is Eq
19751975
impl<T, const N: usize> Eq for Vec<T, N> where T: Eq {}
1976-
// Not sure about this one? Should two distinct capacities really be Eq?
1977-
// Anyways it derefs to &[u8] which implements Eq so I suppose it should
19781976
impl<T> Eq for VecView<T> where T: Eq {}
19791977

19801978
impl<T, const N1: usize, const N2: usize> PartialOrd<Vec<T, N2>> for Vec<T, N1>

0 commit comments

Comments
 (0)