1
Fork 0

Remove an unused lifetime param

This commit is contained in:
Oli Scherer 2025-02-24 12:23:45 +00:00
parent 396baa750e
commit 29440b84a9
4 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@ use crate::context::CodegenCx;
use crate::intrinsic::ArgAbiExt;
use crate::type_of::LayoutGccExt;
impl<'a, 'gcc, 'tcx> AbiBuilderMethods<'tcx> for Builder<'a, 'gcc, 'tcx> {
impl AbiBuilderMethods for Builder<'_, '_, '_> {
fn get_param(&mut self, index: usize) -> Self::Value {
let func = self.current_func();
let param = func.get_param(index as i32);