aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWilliam Sengir <william@sengir.com>2022-03-26 15:43:47 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-05-16 13:55:26 -0700
commitca1ab38d3a037239fc1399c2f9d5b2967acb6757 (patch)
treeeb5e3f8284c72f89a7108b2032c02c1ad1b4098b /src
parentc2cb9b7cade597bc967620174b31db3895681f96 (diff)
downloadzig-ca1ab38d3a037239fc1399c2f9d5b2967acb6757.tar.gz
zig-ca1ab38d3a037239fc1399c2f9d5b2967acb6757.zip
stage2: add global `Type` constant for `u1`
Diffstat (limited to 'src')
-rw-r--r--src/type.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/type.zig b/src/type.zig
index 2c3ce0d900..54b7d44a3d 100644
--- a/src/type.zig
+++ b/src/type.zig
@@ -5999,6 +5999,7 @@ pub const Type = extern union {
};
};
+ pub const @"u1" = initTag(.u1);
pub const @"u8" = initTag(.u8);
pub const @"u16" = initTag(.u16);
pub const @"u32" = initTag(.u32);