We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59710fb commit b8632e1Copy full SHA for b8632e1
src/libstd/io/buffered.rs
@@ -448,9 +448,6 @@ impl<R: Seek> Seek for BufReader<R> {
448
/// [`flush`]: #method.flush
449
#[stable(feature = "rust1", since = "1.0.0")]
450
pub struct BufWriter<W: Write> {
451
- // FIXME: Can this just be W, instead of Option<W>? I don't see any code
452
- // paths that lead to this being None, or that ever check if it IS none,
453
- // even in drop implementations. #72925.
454
inner: Option<W>,
455
// FIXME: Replace this with a VecDeque. Because VecDeque is a Ring buffer,
456
// this would enable BufWriter to operate without any interior copies.
0 commit comments