libsyntax: Fix more merge fallout.

This commit is contained in:
Patrick Walton 2013-05-22 11:02:40 -07:00
parent 18df18c817
commit 3a66d732bb
4 changed files with 7 additions and 5 deletions

View File

@ -14,6 +14,8 @@ Simple compression
*/
use core::prelude::*;
use core::libc::{c_void, size_t, c_int};
use core::libc;
use core::vec;

View File

@ -299,7 +299,7 @@ impl AstBuilder for @ExtCtxt {
self.path_all(dummy_sp(),
true,
~[
self.ident_of("core"),
self.ident_of("std"),
self.ident_of("option"),
self.ident_of("Option")
],
@ -537,7 +537,7 @@ impl AstBuilder for @ExtCtxt {
self.expr_call_global(
span,
~[
self.ident_of("core"),
self.ident_of("std"),
self.ident_of("sys"),
self.ident_of("FailWithCause"),
self.ident_of("fail_with"),

@ -1 +1 @@
Subproject commit 218ab86721eefd7b7e97fa6d9f95a80a1fa8686c
Subproject commit dfae9c3e958dc086d9c0ab068cd76d196c95a433

View File

@ -14,7 +14,7 @@
#[start]
fn start(argc: int, argv: **u8, crate_map: *u8) -> int {
do core::rt::start(argc, argv, crate_map) {
do std::rt::start(argc, argv, crate_map) {
debug!("creating my own runtime is joy");
}
}
}