diff options
| author | bors <bors@rust-lang.org> | 2014-01-08 10:06:45 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-01-08 10:06:45 -0800 |
| commit | 430652c970db41f718936bb649516c401b02964b (patch) | |
| tree | a41d51a20c1b3c876a345039bcfdd86a5c9b8cc2 /src/libstd/path/mod.rs | |
| parent | f3a8baafbecdb6e41f001c8f218d4796a9ca8d40 (diff) | |
| parent | 0547fb9cad4053f3ec66e722b7a05df259d63038 (diff) | |
| download | rust-430652c970db41f718936bb649516c401b02964b.tar.gz rust-430652c970db41f718936bb649516c401b02964b.zip | |
auto merge of #11370 : alexcrichton/rust/issue-10465, r=pwalton
Turned out to be a 2-line fix, but the compiler fallout was huge.
Diffstat (limited to 'src/libstd/path/mod.rs')
| -rw-r--r-- | src/libstd/path/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs index 6488595ea4f..354cc10f022 100644 --- a/src/libstd/path/mod.rs +++ b/src/libstd/path/mod.rs @@ -687,6 +687,7 @@ fn from_utf8_with_replacement(mut v: &[u8]) -> ~str { } #[cfg(test)] mod tests { + use prelude::*; use super::{GenericPath, PosixPath, WindowsPath}; use c_str::ToCStr; |
