diff options
| author | Justus Klausecker <justus@klausecker.de> | 2025-08-12 16:33:32 +0200 |
|---|---|---|
| committer | Justus Klausecker <justus@klausecker.de> | 2025-08-12 16:33:58 +0200 |
| commit | 8fda49ea8a695487def94e0bfaec506c207c6977 (patch) | |
| tree | da6d15c5a669c76b97735c0938aa3b334a2d6473 /src | |
| parent | 277e4a8337b233a5d74f8f5b74d606210cf6fd97 (diff) | |
| download | zig-8fda49ea8a695487def94e0bfaec506c207c6977.tar.gz zig-8fda49ea8a695487def94e0bfaec506c207c6977.zip | |
fix: remove incorrect '&'
Diffstat (limited to 'src')
| -rw-r--r-- | src/Value.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Value.zig b/src/Value.zig index ad28919566..d2e6c9f1ac 100644 --- a/src/Value.zig +++ b/src/Value.zig @@ -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); }, }, }; |
