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
lib/std/builtin.zig+4-4
| ... | ... | @@ -613,10 +613,10 @@ pub const Type = union(enum) { |
| 613 | 613 | /// This data structure is used by the Zig language code generation and |
| 614 | 614 | /// therefore must be kept in sync with the compiler implementation. |
| 615 | 615 | pub const Size = enum(u2) { |
| 616 | | One, |
| 617 | | Many, |
| 618 | | Slice, |
| 619 | | C, |
| 616 | one, |
| 617 | many, |
| 618 | slice, |
| 619 | c, |
| 620 | 620 | }; |
| 621 | 621 | }; |
| 622 | 622 | |