about summary refs log tree commit diff
path: root/src/libstd/io
diff options
context:
space:
mode:
authorNick Cameron <ncameron@mozilla.com>2016-10-06 18:28:27 +1300
committerNick Cameron <ncameron@mozilla.com>2016-10-12 08:40:22 +1300
commit14c62f91b7f09d6ff5fe94089c466a4f181a6f38 (patch)
tree955d9955cd273c901b64ea819ad881fb7d76b7a9 /src/libstd/io
parenta94f5934cd6d2a1fe88b06f2ae7e90b5367fc560 (diff)
downloadrust-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.rs3
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())
     }