commit 8fda49ea8a695487def94e0bfaec506c207c6977 (tree)
parent 277e4a8337b233a5d74f8f5b74d606210cf6fd97
Author: Justus Klausecker <justus@klausecker.de>
Date: Tue, 12 Aug 2025 16:33:32 +0200
fix: remove incorrect '&'
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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);
},
},
};