Skip to content

Commit f277037

Browse files
committed
Fix build
1 parent 169d809 commit f277037

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/io/buf_writer.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,9 @@ impl<W: AsyncWrite + Unpin> BufWriter<W> {
178178
&mut self.inner
179179
}
180180

181-
// pub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut W> {
182-
// self.inner()
183-
// }
181+
// pub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut W> {
182+
// self.inner()
183+
// }
184184

185185
/// Consumes BufWriter, returning the underlying writer
186186
///
@@ -192,9 +192,9 @@ impl<W: AsyncWrite + Unpin> BufWriter<W> {
192192
self.inner
193193
}
194194

195-
// pub fn poll_into_inner(self: Pin<&mut Self>, _cx: Context<'_>) -> Poll<io::Result<usize>> {
196-
// unimplemented!("poll into inner method")
197-
// }
195+
// pub fn poll_into_inner(self: Pin<&mut Self>, _cx: Context<'_>) -> Poll<io::Result<usize>> {
196+
// unimplemented!("poll into inner method")
197+
// }
198198

199199
/// Returns a reference to the internally buffered data.
200200
///

0 commit comments

Comments
 (0)