Skip to content

Commit 779e562

Browse files
committed
---
yaml --- r: 52140 b: refs/heads/dist-snap c: 8bf38b2 h: refs/heads/master v: v3
1 parent 6eed19c commit 779e562

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
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
99
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10-
refs/heads/dist-snap: aed94a3eb169a551e88889f822db394ed8b8ba58
10+
refs/heads/dist-snap: 8bf38b26eef8f46ada1e9c06225591254c3c1a33
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/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(),

branches/dist-snap/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)