diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-01-15 14:11:58 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-01-15 14:11:58 -0800 |
| commit | c3c47f5f55ca800b229fb5821825036fcc9ae0fc (patch) | |
| tree | 993a4ddd6b74809230df4caeac0d382374247e68 /src/libstd | |
| parent | 9d4d5ca6e7d19fd9be6775289e465fefddab69f5 (diff) | |
| parent | 28b0d4029e3ae65505b19bf74379a8516b0e1fc9 (diff) | |
| download | rust-c3c47f5f55ca800b229fb5821825036fcc9ae0fc.tar.gz rust-c3c47f5f55ca800b229fb5821825036fcc9ae0fc.zip | |
rollup merge of #21161: japaric/ufcs-hash
expansion now uses `::std::hash::Hash::hash(&*__self_0_0, __arg_0)` instead of `(*__self_0_0).hash(__arg_0)` closes #21160 r? @alexcrichton
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/io/process.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/io/process.rs b/src/libstd/io/process.rs index a093e748d57..43ca7b13145 100644 --- a/src/libstd/io/process.rs +++ b/src/libstd/io/process.rs @@ -21,6 +21,8 @@ use prelude::v1::*; use collections::HashMap; use ffi::CString; use fmt; +// NOTE(stage0) remove import after a snapshot +#[cfg(stage0)] use hash::Hash; use io::pipe::{PipeStream, PipePair}; use io::{IoResult, IoError}; |
