Skip to content

Commit 29b5ce6

Browse files
committed
---
yaml --- r: 10362 b: refs/heads/snap-stage3 c: a494cc1 h: refs/heads/master v: v3
1 parent cf5e29a commit 29b5ce6

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: b0f01727fe6b9c4dde10a7e6d62c0295dd5cadd4
4+
refs/heads/snap-stage3: a494cc159874ce2b46f19abeda4e2e46b351cff2
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/snap-stage3/src/rustc/middle/astencode.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,6 @@ fn visit_ids(item: ast::inlined_item, vfn: fn@(ast::node_id)) {
236236
vfn(self_id);
237237
vfn(parent_id.node);
238238
}
239-
// not sure if this should be here? FIXME
240239
visit::fk_dtor(tps, self_id, parent_id) {
241240
vec::iter(tps) {|tp| vfn(tp.id)}
242241
vfn(id);

branches/snap-stage3/src/rustc/middle/borrowck/gather_loans.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ fn req_loans_in_expr(ex: @ast::expr,
9090
// will ignore it, but we ought to be requiring it to
9191
// be immutable (whereas something like {f:int} would
9292
// be fine).
93+
// (See #2493)
9394

9495
alt opt_deref_kind(arg_ty.ty) {
9596
some(deref_ptr(region_ptr)) |

branches/snap-stage3/src/rustc/middle/check_const.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ fn check_expr(sess: session, def_map: resolve::def_map,
122122
}
123123

124124
// Make sure a const item doesn't recursively refer to itself
125-
// FIXME: Should use the dependency graph when it's available
125+
// FIXME: Should use the dependency graph when it's available (#1356)
126126
fn check_item_recursion(sess: session, ast_map: ast_map::map,
127127
def_map: resolve::def_map, it: @item) {
128128

branches/snap-stage3/src/rustc/middle/const_eval.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import syntax::ast::*;
22

33
// FIXME this doesn't handle big integer/float literals correctly (nor does
4-
// the rest of our literal handling)
4+
// the rest of our literal handling - issue #33)
55
enum const_val {
66
const_float(f64),
77
const_int(i64),

0 commit comments

Comments
 (0)