Skip to content

Commit 4b14d0c

Browse files
committed
---
yaml --- r: 42030 b: refs/heads/master c: e910e60 h: refs/heads/master v: v3
1 parent 6094581 commit 4b14d0c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 0743cec0239fb12bc95f2c121253e6d798cbe2c7
2+
refs/heads/master: e910e601a6857143d90dd23543577f1c318fdf54
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
55
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650

trunk/src/libcargo/cargo.rc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -345,11 +345,11 @@ fn load_crate(filename: &Path) -> Option<Crate> {
345345
}
346346
}
347347

348-
type env = @{
348+
struct Env {
349349
mut deps: ~[~str]
350-
};
350+
}
351351

352-
fn goto_view_item(ps: syntax::parse::parse_sess, e: env,
352+
fn goto_view_item(ps: syntax::parse::parse_sess, e: @Env,
353353
i: @ast::view_item) {
354354
match i.node {
355355
ast::view_item_use(ident, metas, _) => {
@@ -396,10 +396,10 @@ fn load_crate(filename: &Path) -> Option<Crate> {
396396
_ => ()
397397
}
398398
}
399-
fn goto_item(_e: env, _i: @ast::item) {
399+
fn goto_item(_e: @Env, _i: @ast::item) {
400400
}
401401

402-
let e = @{
402+
let e = @Env {
403403
mut deps: ~[]
404404
};
405405
let v = visit::mk_simple_visitor(@visit::SimpleVisitor {

0 commit comments

Comments
 (0)