Skip to content

Commit 92b3b09

Browse files
Drop unsafe field comment
Co-authored-by: Ralf Jung <post@ralfj.de>
1 parent 4d2dcb9 commit 92b3b09

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

library/core/src/iter/adapters/map_windows.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ struct MapWindowsInner<I: Iterator, const N: usize> {
4040
/// `self.buffer[self.start..self.start + N]` must be initialized,
4141
/// with all other elements being uninitialized. This also
4242
/// implies that `self.start <= N`.
43-
//
44-
// FIXME make these unsafe fields once that feature is ready
4543
struct Buffer<T, const N: usize> {
4644
buffer: [[MaybeUninit<T>; N]; 2],
4745
start: usize,

0 commit comments

Comments
 (0)