File tree Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
14
14
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
15
15
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
16
16
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17
- refs/heads/auto: 18df18c817b5e109710c58f512a2cc5ad14fa8b2
17
+ refs/heads/auto: 3a66d732bb3d4b90796d39a5bc58921cea955c60
18
18
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
19
19
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ Simple compression
14
14
15
15
*/
16
16
17
+ use core:: prelude:: * ;
18
+
17
19
use core:: libc:: { c_void, size_t, c_int} ;
18
20
use core:: libc;
19
21
use core:: vec;
Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ impl AstBuilder for @ExtCtxt {
299
299
self . path_all ( dummy_sp ( ) ,
300
300
true ,
301
301
~[
302
- self . ident_of ( "core " ) ,
302
+ self . ident_of ( "std " ) ,
303
303
self . ident_of ( "option" ) ,
304
304
self . ident_of ( "Option" )
305
305
] ,
@@ -537,7 +537,7 @@ impl AstBuilder for @ExtCtxt {
537
537
self . expr_call_global (
538
538
span,
539
539
~[
540
- self . ident_of ( "core " ) ,
540
+ self . ident_of ( "std " ) ,
541
541
self . ident_of ( "sys" ) ,
542
542
self . ident_of ( "FailWithCause" ) ,
543
543
self . ident_of ( "fail_with" ) ,
Original file line number Diff line number Diff line change 1
- Subproject commit 218ab86721eefd7b7e97fa6d9f95a80a1fa8686c
1
+ Subproject commit dfae9c3e958dc086d9c0ab068cd76d196c95a433
Original file line number Diff line number Diff line change 14
14
15
15
#[ start]
16
16
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) {
18
18
debug ! ( "creating my own runtime is joy" ) ;
19
19
}
20
- }
20
+ }
You can’t perform that action at this time.
0 commit comments