Skip to content

Commit

Permalink
preemptively fix windows compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Aparicio committed Mar 17, 2015
1 parent cb5e429 commit 6d49476
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/libstd/dynamic_lib.rs
Expand Up @@ -272,7 +272,9 @@ mod dl {
use ptr;
use result::Result;
use result::Result::{Ok, Err};
#[cfg(stage0)]
use slice::SliceExt;
#[cfg(stage0)]
use str::StrExt;
use str;
use string::String;
Expand Down
1 change: 1 addition & 0 deletions src/libstd/sys/windows/process2.rs
Expand Up @@ -128,6 +128,7 @@ impl Process {
use env::split_paths;
use mem;
use iter::IteratorExt;
#[cfg(stage0)]
use str::StrExt;

// To have the spawning semantics of unix/windows stay the same, we need to
Expand Down

0 comments on commit 6d49476

Please sign in to comment.