diff options
| author | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2024-03-13 09:14:12 -0700 |
|---|---|---|
| committer | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2024-03-13 09:14:12 -0700 |
| commit | b48d24a5469d7d3545cc3c7a17652ce1aba5516e (patch) | |
| tree | ef9c5dfa578512bc72238afa4aed5d5e90359ff5 /src/cli/args.zig | |
| parent | 13c5a70da7e809c62629f02cb81fbea0ff06ec6c (diff) | |
update zig
Diffstat (limited to 'src/cli/args.zig')
| -rw-r--r-- | src/cli/args.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/args.zig b/src/cli/args.zig index 128b29541..0363ba9be 100644 --- a/src/cli/args.zig +++ b/src/cli/args.zig @@ -281,7 +281,7 @@ fn parseIntoField( fn parsePackedStruct(comptime T: type, v: []const u8) !T { const info = @typeInfo(T).Struct; - assert(info.layout == .Packed); + assert(info.layout == .@"packed"); var result: T = .{}; |
