fix: remove incorrect '&'

This commit is contained in:
Justus Klausecker 2025-08-12 16:33:32 +02:00
parent 277e4a8337
commit 8fda49ea8a

View File

@ -3182,7 +3182,7 @@ pub fn uninterpret(val: anytype, ty: Type, pt: Zcu.PerThread) error{ OutOfMemory
field_val.* = default_init;
}
}
return pt.aggregateValue(ty, &field_vals);
return pt.aggregateValue(ty, field_vals);
},
},
};