We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1642df8 commit c6462eeCopy full SHA for c6462ee
src/rustc/middle/trans/reflect.rs
@@ -156,6 +156,7 @@ impl methods for reflector {
156
}
157
158
// FIXME: fetch constants out of intrinsic:: for the numbers.
159
+ // (#2594)
160
ty::ty_fn(fty) {
161
let pureval = alt fty.purity {
162
ast::pure_fn { 0u }
@@ -217,7 +218,7 @@ impl methods for reflector {
217
218
// FIXME: visiting all the variants in turn is probably
219
// not ideal. It'll work but will get costly on big enums.
220
// Maybe let the visitor tell us if it wants to visit only
- // a particular variant?
221
+ // a particular variant? (#2595)
222
ty::ty_enum(did, substs) {
223
let bcx = self.bcx;
224
let tcx = bcx.ccx().tcx;
0 commit comments