Skip to content

Commit 50bd9d7

Browse files
committed
---
yaml --- r: 41592 b: refs/heads/master c: 8bf38b2 h: refs/heads/master v: v3
1 parent 6df4351 commit 50bd9d7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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: aed94a3eb169a551e88889f822db394ed8b8ba58
2+
refs/heads/master: 8bf38b26eef8f46ada1e9c06225591254c3c1a33
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
55
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650

trunk/src/librustc/driver/session.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ mod test {
336336
use syntax::ast;
337337
use syntax::ast_util;
338338

339-
fn make_crate_type_attr(t: ~str) -> ast::attribute {
339+
fn make_crate_type_attr(+t: ~str) -> ast::attribute {
340340
ast_util::respan(ast_util::dummy_sp(), {
341341
style: ast::attr_outer,
342342
value: ast_util::respan(ast_util::dummy_sp(),

trunk/src/librustc/middle/astencode.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ trait fake_ext_ctxt {
10381038
fn cfg() -> ast::crate_cfg;
10391039
fn parse_sess() -> parse::parse_sess;
10401040
fn call_site() -> span;
1041-
fn ident_of(st: ~str) -> ast::ident;
1041+
fn ident_of(+st: ~str) -> ast::ident;
10421042
}
10431043

10441044
#[cfg(test)]
@@ -1055,7 +1055,7 @@ impl fake_session: fake_ext_ctxt {
10551055
expn_info: None
10561056
}
10571057
}
1058-
fn ident_of(st: ~str) -> ast::ident {
1058+
fn ident_of(+st: ~str) -> ast::ident {
10591059
self.interner.intern(@st)
10601060
}
10611061
}

0 commit comments

Comments
 (0)