From c6462eec304ce9d786aab2d6a1314725490aeeaa Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Thu, 14 Jun 2012 14:13:52 -0700 Subject: [PATCH] Comments only: annotate FIXMEs in reflect --- src/rustc/middle/trans/reflect.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rustc/middle/trans/reflect.rs b/src/rustc/middle/trans/reflect.rs index 0eaeb6513682..c2f804d42cd8 100644 --- a/src/rustc/middle/trans/reflect.rs +++ b/src/rustc/middle/trans/reflect.rs @@ -156,6 +156,7 @@ impl methods for reflector { } // FIXME: fetch constants out of intrinsic:: for the numbers. + // (#2594) ty::ty_fn(fty) { let pureval = alt fty.purity { ast::pure_fn { 0u } @@ -217,7 +218,7 @@ impl methods for reflector { // FIXME: visiting all the variants in turn is probably // not ideal. It'll work but will get costly on big enums. // Maybe let the visitor tell us if it wants to visit only - // a particular variant? + // a particular variant? (#2595) ty::ty_enum(did, substs) { let bcx = self.bcx; let tcx = bcx.ccx().tcx;