diff options
| author | Nick Cameron <ncameron@mozilla.com> | 2016-10-06 18:28:27 +1300 |
|---|---|---|
| committer | Nick Cameron <ncameron@mozilla.com> | 2016-10-12 08:40:22 +1300 |
| commit | 14c62f91b7f09d6ff5fe94089c466a4f181a6f38 (patch) | |
| tree | 955d9955cd273c901b64ea819ad881fb7d76b7a9 /src/libstd/io | |
| parent | a94f5934cd6d2a1fe88b06f2ae7e90b5367fc560 (diff) | |
| download | rust-14c62f91b7f09d6ff5fe94089c466a4f181a6f38.tar.gz rust-14c62f91b7f09d6ff5fe94089c466a4f181a6f38.zip | |
Deprecate `Reflect`
[tracking issue](https://github.com/rust-lang/rust/issues/27749)
Diffstat (limited to 'src/libstd/io')
| -rw-r--r-- | src/libstd/io/buffered.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/io/buffered.rs b/src/libstd/io/buffered.rs index 93b2d34e27f..39b64e72393 100644 --- a/src/libstd/io/buffered.rs +++ b/src/libstd/io/buffered.rs @@ -12,7 +12,6 @@ use io::prelude::*; -use marker::Reflect; use cmp; use error; use fmt; @@ -578,7 +577,7 @@ impl<W> From<IntoInnerError<W>> for Error { } #[stable(feature = "rust1", since = "1.0.0")] -impl<W: Reflect + Send + fmt::Debug> error::Error for IntoInnerError<W> { +impl<W: Send + fmt::Debug> error::Error for IntoInnerError<W> { fn description(&self) -> &str { error::Error::description(self.error()) } |
