diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-10-23 19:46:48 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-10-23 19:47:32 -0700 |
| commit | 22b4c9e1a9595bd94ada4c500a430e2668ffcd07 (patch) | |
| tree | 325e312f063422e19b0427373194b703b8cc3b53 /src/type.zig | |
| parent | ee98d8700818aa667137e3aa580b16df2ba6d680 (diff) | |
| download | zig-22b4c9e1a9595bd94ada4c500a430e2668ffcd07.tar.gz zig-22b4c9e1a9595bd94ada4c500a430e2668ffcd07.zip | |
stage2: implement more C pointer Sema and comptime ptr arith
Diffstat (limited to 'src/type.zig')
| -rw-r--r-- | src/type.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/type.zig b/src/type.zig index 380c75ca77..e77780d9ca 100644 --- a/src/type.zig +++ b/src/type.zig @@ -4006,6 +4006,7 @@ pub const Type = extern union { pub const @"u8" = initTag(.u8); pub const @"bool" = initTag(.bool); pub const @"usize" = initTag(.usize); + pub const @"isize" = initTag(.isize); pub const @"comptime_int" = initTag(.comptime_int); pub const @"void" = initTag(.void); pub const @"type" = initTag(.type); |
