1
Fork 0

Use anonymous lifetimes where possible

This commit is contained in:
bjorn3 2019-08-18 16:52:07 +02:00
parent 1bee110d95
commit 2a20cc0b94
17 changed files with 134 additions and 150 deletions

View file

@ -2,8 +2,8 @@
use crate::prelude::*;
pub fn maybe_codegen<'a, 'tcx>(
fx: &mut FunctionCx<'a, 'tcx, impl Backend>,
pub fn maybe_codegen<'tcx>(
fx: &mut FunctionCx<'_, 'tcx, impl Backend>,
bin_op: BinOp,
checked: bool,
lhs: CValue<'tcx>,