style: replace meta.Tuple calls with new tuple syntax

This commit is contained in:
2022-11-29 23:00:12 -04:00
parent 9fcbbe7d57
commit 4af86e1cb3
4 changed files with 4 additions and 4 deletions

View File

@@ -181,7 +181,7 @@ pub const Logger = struct {
}
};
const FmtArgTuple = std.meta.Tuple(&.{ u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32 });
const FmtArgTuple = struct { u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32 };
pub const audio = struct {
const _io = @import("core/bus/io.zig");