Skip to content

Commit 93870c8

Browse files
committed
Remove stable annotation
1 parent 265db94 commit 93870c8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

library/std/src/io/mod.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2471,7 +2471,6 @@ impl<R: Read> Iterator for Bytes<R> {
24712471
}
24722472
}
24732473

2474-
#[stable(feature = "bufreader_size_hint", since = "1.51.0")]
24752474
trait SizeHint {
24762475
fn lower_bound(&self) -> usize;
24772476

@@ -2484,14 +2483,12 @@ trait SizeHint {
24842483
}
24852484
}
24862485

2487-
#[stable(feature = "bufreader_size_hint", since = "1.51.0")]
24882486
impl<T> SizeHint for T {
24892487
default fn lower_bound(&self) -> usize {
24902488
0
24912489
}
24922490
}
24932491

2494-
#[stable(feature = "bufreader_size_hint", since = "1.51.0")]
24952492
impl<T> SizeHint for BufReader<T> {
24962493
fn lower_bound(&self) -> usize {
24972494
self.buffer().len()

0 commit comments

Comments
 (0)