mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 04:24:33 +01:00
fix: remove incorrect '&'
This commit is contained in:
parent
277e4a8337
commit
8fda49ea8a
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue