Skip to content

Commit 3a66d73

Browse files
committed
libsyntax: Fix more merge fallout.
1 parent 18df18c commit 3a66d73

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

src/libextra/flate.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Simple compression
1414
1515
*/
1616

17+
use core::prelude::*;
18+
1719
use core::libc::{c_void, size_t, c_int};
1820
use core::libc;
1921
use core::vec;

src/libsyntax/ext/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ impl AstBuilder for @ExtCtxt {
299299
self.path_all(dummy_sp(),
300300
true,
301301
~[
302-
self.ident_of("core"),
302+
self.ident_of("std"),
303303
self.ident_of("option"),
304304
self.ident_of("Option")
305305
],
@@ -537,7 +537,7 @@ impl AstBuilder for @ExtCtxt {
537537
self.expr_call_global(
538538
span,
539539
~[
540-
self.ident_of("core"),
540+
self.ident_of("std"),
541541
self.ident_of("sys"),
542542
self.ident_of("FailWithCause"),
543543
self.ident_of("fail_with"),

src/test/run-pass/core-rt-smoke.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#[start]
1616
fn start(argc: int, argv: **u8, crate_map: *u8) -> int {
17-
do core::rt::start(argc, argv, crate_map) {
17+
do std::rt::start(argc, argv, crate_map) {
1818
debug!("creating my own runtime is joy");
1919
}
20-
}
20+
}

0 commit comments

Comments
 (0)