authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-01-15 16:49:57+00:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-01-16 11:37:46+00:00
logaf6bad46cd132113e7b8497829a660a79e101742
tree21aaa96a91595f322eb100c47c2d9f537ba71c28
parentd4fe4698d9ff865ed1dc7e0163f2d5fcbe2b45a6
signaturelock-open Commit is signed but in an unrecognized format.

std.builtin.Type: rename `Pointer.Size` fields to lowercase

This matches established naming conventions. Now is an opportune time to make this change, since we're already performing breaking changes to `std.builtin.Type`.

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

lib/std/builtin.zig+4-4
......@@ -613,10 +613,10 @@ pub const Type = union(enum) {
613613 /// This data structure is used by the Zig language code generation and
614614 /// therefore must be kept in sync with the compiler implementation.
615615 pub const Size = enum(u2) {
616 One,
617 Many,
618 Slice,
619 C,
616 one,
617 many,
618 slice,
619 c,
620620 };
621621 };
622622