Skip to content

Commit a5acbbf

Browse files
committed
---
yaml --- r: 60642 b: refs/heads/auto c: 3a66d73 h: refs/heads/master v: v3
1 parent ed6c0ca commit a5acbbf

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: 18df18c817b5e109710c58f512a2cc5ad14fa8b2
17+
refs/heads/auto: 3a66d732bb3d4b90796d39a5bc58921cea955c60
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1919
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c

branches/auto/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;

branches/auto/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"),

branches/auto/src/libuv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 218ab86721eefd7b7e97fa6d9f95a80a1fa8686c
1+
Subproject commit dfae9c3e958dc086d9c0ab068cd76d196c95a433

branches/auto/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)