Skip to content

Commit b667fab

Browse files
committed
remove redundant Send and Sync impl from Vec
1 parent 2f56839 commit b667fab

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/libcollections/vec.rs

-3
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,6 @@ pub struct Vec<T> {
157157
cap: usize,
158158
}
159159

160-
unsafe impl<T: Send> Send for Vec<T> { }
161-
unsafe impl<T: Sync> Sync for Vec<T> { }
162-
163160
////////////////////////////////////////////////////////////////////////////////
164161
// Inherent methods
165162
////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)