remove elided lifetime

This commit is contained in:
2024-11-29 11:05:44 +09:00
parent fffd0f5465
commit ebde8546c9

View File

@@ -341,7 +341,7 @@ pub struct Args<'a> {
code: &'a CompiledCode,
}
impl<'a> Args<'a> {
impl Args<'_> {
pub fn invoke(&self) -> Option<AbiValue> {
unsafe { self.code.invoke_raw(&self.cif_args) }
}