Skip to content

Commit 9d43c47

Browse files
committed
---
yaml --- r: 227611 b: refs/heads/try c: 0d818b4 h: refs/heads/master i: 227609: 6db9906 227607: 347bd19 v: v3
1 parent a6c53f1 commit 9d43c47

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: aca2057ed5fb7af3f8905b2bc01f72fa001c35c8
33
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4-
refs/heads/try: 2d389c125e2ba7fdb6762120e1fa4e783fa7adad
4+
refs/heads/try: 0d818b4ee4a978babc8781ece028a7d0e9ed2e36
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/src/libstd/io/buffered.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,13 +454,17 @@ impl<W: Read + Write> Read for InternalBufWriter<W> {
454454
#[unstable(feature = "buf_stream",
455455
reason = "unsure about semantics of buffering two directions, \
456456
leading to issues like #17136")]
457+
#[deprecated(since = "1.2.0",
458+
reason = "use the crates.io `bufstream` crate instead")]
457459
pub struct BufStream<S: Write> {
458460
inner: BufReader<InternalBufWriter<S>>
459461
}
460462

461463
#[unstable(feature = "buf_stream",
462464
reason = "unsure about semantics of buffering two directions, \
463465
leading to issues like #17136")]
466+
#[deprecated(since = "1.2.0",
467+
reason = "use the crates.io `bufstream` crate instead")]
464468
impl<S: Read + Write> BufStream<S> {
465469
/// Creates a new buffered stream with explicitly listed capacities for the
466470
/// reader/writer buffer.

0 commit comments

Comments
 (0)