Skip to content

Commit c0548f6

Browse files
committed
---
yaml --- r: 15854 b: refs/heads/try c: 9fa4763 h: refs/heads/master v: v3
1 parent 83a2b42 commit c0548f6

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 55c008874de41998e3b86da85b1fa8eccc980c39
5+
refs/heads/try: 9fa4763604b8d9bd342d5ead58442ef1b3643b5a
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/rustc/front/intrinsic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ mod intrinsic {
3232

3333
// FIXME: possibly pair these as enter/leave calls
3434
// not just enter with implicit number of subsequent
35-
// calls.
35+
// calls. (#2402)
3636
fn visit_vec_of(mutbl: uint) -> bool;
3737
fn visit_box_of(mutbl: uint) -> bool;
3838
fn visit_uniq_of(mutbl: uint) -> bool;

branches/try/src/rustc/front/test.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ fn fold_mod(_cx: test_ctxt, m: ast::_mod, fld: fold::ast_fold) -> ast::_mod {
6565
// Remove any defined main function from the AST so it doesn't clash with
6666
// the one we're going to add. FIXME: This is sloppy. Instead we should
6767
// have some mechanism to indicate to the translation pass which function
68-
// we want to be main.
68+
// we want to be main. (#2403)
6969
fn nomain(&&item: @ast::item) -> option<@ast::item> {
7070
alt item.node {
7171
ast::item_fn(_, _, _) {
@@ -339,6 +339,7 @@ fn mk_test_desc_rec(cx: test_ctxt, test: test) -> @ast::expr {
339339

340340
// Produces a bare function that wraps the test function
341341
// FIXME: This can go away once fn is the type of bare function
342+
// (See #1281)
342343
fn mk_test_wrapper(cx: test_ctxt,
343344
fn_path_expr: ast::expr,
344345
span: span) -> @ast::expr {

0 commit comments

Comments
 (0)