Skip to content

Commit

Permalink
Merge pull request rust-lang#277 from RalfJung/nightly
Browse files Browse the repository at this point in the history
fix for latest nightly
  • Loading branch information
RalfJung authored Aug 1, 2017
2 parents 7c6befe + 69fd22f commit 6d3c88c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_mir/interpret/lvalue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ impl<'a, 'tcx> EvalContext<'a, 'tcx> {
&mut self,
base: Lvalue<'tcx>,
base_ty: Ty<'tcx>,
proj_elem: &mir::ProjectionElem<'tcx, mir::Operand<'tcx>>,
proj_elem: &mir::ProjectionElem<'tcx, mir::Operand<'tcx>, Ty<'tcx>>,
) -> EvalResult<'tcx, Lvalue<'tcx>> {
use rustc::mir::ProjectionElem::*;
let (ptr, extra, aligned) = match *proj_elem {
Expand Down

0 comments on commit 6d3c88c

Please sign in to comment.