Skip to content

Commit 0d596f2

Browse files
committed
FIXME
1 parent 91cad39 commit 0d596f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_mir/interpret/visitor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ pub trait ValueVisitor<'a, 'mir, 'tcx: 'mir+'a, M: Machine<'a, 'mir, 'tcx>>: Siz
317317
self.visit_union(v)?;
318318
},
319319
layout::FieldPlacement::Arbitrary { ref offsets, .. } => {
320-
// We collect in a vec because otherwise there are lifetime errors:
320+
// FIXME: We collect in a vec because otherwise there are lifetime errors:
321321
// Projecting to a field needs (mutable!) access to `ecx`.
322322
let fields: Vec<EvalResult<'tcx, Self::V>> =
323323
(0..offsets.len()).map(|i| {

0 commit comments

Comments
 (0)