Skip to content

Commit bed23d2

Browse files
committed
back to zig master!
1 parent c8e4327 commit bed23d2

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/zig.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ jobs:
2929
steps:
3030
- uses: actions/checkout@v4
3131
- uses: goto-bus-stop/setup-zig@v2
32-
with:
33-
version: 0.13.0
3432
- uses: actions/cache@v4
3533
with:
3634
path: |

zig/minsk_meta/src/downcasted_pointer.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pub fn DowncastedPointer(comptime T: type, comptime U: type) type {
22
return switch (@typeInfo(T)) {
3-
.Pointer => |p| if (p.is_const)
3+
.pointer => |p| if (p.is_const)
44
*const U
55
else
66
*U,

zig/minsk_tests/src/code_analysis/syntax/evaluator_tests.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ pub fn evaluatorTestSuite(state: *t.TestState) void {
400400
.allocated,
401401
);
402402

403-
inline for (@typeInfo(one_shot_tests).Struct.decls) |decl| {
403+
inline for (@typeInfo(one_shot_tests).@"struct".decls) |decl| {
404404
t.runTest(
405405
state,
406406
void,

0 commit comments

Comments
 (0)