mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
fix: remove incorrect '&'
This commit is contained in:
parent
277e4a8337
commit
8fda49ea8a
@ -3182,7 +3182,7 @@ pub fn uninterpret(val: anytype, ty: Type, pt: Zcu.PerThread) error{ OutOfMemory
|
|||||||
field_val.* = default_init;
|
field_val.* = default_init;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return pt.aggregateValue(ty, &field_vals);
|
return pt.aggregateValue(ty, field_vals);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user