Skip to content

Commit 8fda49e

Browse files
committed
fix: remove incorrect '&'
1 parent 277e4a8 commit 8fda49e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Value.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3182,7 +3182,7 @@ pub fn uninterpret(val: anytype, ty: Type, pt: Zcu.PerThread) error{ OutOfMemory
31823182
field_val.* = default_init;
31833183
}
31843184
}
3185-
return pt.aggregateValue(ty, &field_vals);
3185+
return pt.aggregateValue(ty, field_vals);
31863186
},
31873187
},
31883188
};

0 commit comments

Comments
 (0)