mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 00:06:09 +03:00
fix(bench): update std options format
This commit is contained in:
@ -56,8 +56,8 @@ const Mode = enum {
|
|||||||
table,
|
table,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const std_options = struct {
|
pub const std_options: std.Options = .{
|
||||||
pub const log_level: std.log.Level = .debug;
|
.log_level = .debug,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub fn main() !void {
|
pub fn main() !void {
|
||||||
|
@ -48,8 +48,8 @@ const Mode = enum {
|
|||||||
table,
|
table,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const std_options = struct {
|
pub const std_options: std.Options = .{
|
||||||
pub const log_level: std.log.Level = .debug;
|
.log_level = .debug,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub fn main() !void {
|
pub fn main() !void {
|
||||||
|
@ -70,8 +70,8 @@ const Mode = enum {
|
|||||||
@"gen-rand",
|
@"gen-rand",
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const std_options = struct {
|
pub const std_options: std.Options = .{
|
||||||
pub const log_level: std.log.Level = .debug;
|
.log_level = .debug,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub fn main() !void {
|
pub fn main() !void {
|
||||||
|
Reference in New Issue
Block a user