Skip to content

Commit 6c8f0a6

Browse files
committed
Remove stable annotation
1 parent 5881fc9 commit 6c8f0a6

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
@@ -2468,7 +2468,6 @@ impl<R: Read> Iterator for Bytes<R> {
24682468
}
24692469
}
24702470

2471-
#[stable(feature = "bufreader_size_hint", since = "1.51.0")]
24722471
trait SizeHint {
24732472
fn lower_bound(&self) -> usize;
24742473

@@ -2481,14 +2480,12 @@ trait SizeHint {
24812480
}
24822481
}
24832482

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

2491-
#[stable(feature = "bufreader_size_hint", since = "1.51.0")]
24922489
impl<T> SizeHint for BufReader<T> {
24932490
fn lower_bound(&self) -> usize {
24942491
self.buffer().len()

0 commit comments

Comments
 (0)