authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-02-09 10:39:31+00:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-03-10 10:26:11+00:00
log8d8140349fe2ea3197f8eea71cc120a0e8fa08d8
tree43817a4cc27b45629d261e55867f9f4b040367bd
parent5865abf7f5ea2d4500cb8387252d9efee26ecae1
signaturelock-open Commit is signed but in an unrecognized format.

simple little no-objection src/Type.zig correction


1 files changed, 1 insertions(+), 1 deletions(-)

src/Type.zig+1-1
......@@ -2853,7 +2853,7 @@ pub fn fieldPtrType(ptr_ty: Type, field_index: u32, pt: Zcu.PerThread) Allocator
28532853 else => parent_align.minStrict(.fromLog2Units(@ctz(field_offset))),
28542854 };
28552855 const field_ptr_align: Alignment = a: {
2856 if (parent_align == .none and
2856 if (ptr_info.flags.alignment == .none and
28572857 aggregate_ty.explicitFieldAlignment(field_index, zcu) == .none and
28582858 actual_field_align == field_ty.abiAlignment(zcu))
28592859 {