diff options
| author | Ralf Jung <post@ralfj.de> | 2018-11-02 11:24:36 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2018-11-05 09:59:05 +0100 |
| commit | 0d596f29d9cf105833db5dc5cca1eccade08ce4e (patch) | |
| tree | bd5c25d0391ce9120bee4b7be227daad0fc9e99d /src | |
| parent | 91cad3961484407eef2c89fd1329d8139013f669 (diff) | |
| download | rust-0d596f29d9cf105833db5dc5cca1eccade08ce4e.tar.gz rust-0d596f29d9cf105833db5dc5cca1eccade08ce4e.zip | |
FIXME
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc_mir/interpret/visitor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_mir/interpret/visitor.rs b/src/librustc_mir/interpret/visitor.rs index 80c7e075bd7..12455e95727 100644 --- a/src/librustc_mir/interpret/visitor.rs +++ b/src/librustc_mir/interpret/visitor.rs @@ -317,7 +317,7 @@ pub trait ValueVisitor<'a, 'mir, 'tcx: 'mir+'a, M: Machine<'a, 'mir, 'tcx>>: Siz self.visit_union(v)?; }, layout::FieldPlacement::Arbitrary { ref offsets, .. } => { - // We collect in a vec because otherwise there are lifetime errors: + // FIXME: We collect in a vec because otherwise there are lifetime errors: // Projecting to a field needs (mutable!) access to `ecx`. let fields: Vec<EvalResult<'tcx, Self::V>> = (0..offsets.len()).map(|i| { |
