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

@ -654,7 +654,7 @@ impl<'ll, 'tcx> FnAbiLlvmExt<'ll, 'tcx> for FnAbi<'tcx, Ty<'tcx>> {
}
}
impl<'tcx> AbiBuilderMethods<'tcx> for Builder<'_, '_, 'tcx> {
impl AbiBuilderMethods for Builder<'_, '_, '_> {
fn get_param(&mut self, index: usize) -> Self::Value {
llvm::get_param(self.llfn(), index as c_uint)
}