fix(bench): update std options format

This commit is contained in:
Qwerasd
2024-02-10 22:20:24 -05:00
parent 74c26d1ef0
commit 58b925d4c3
3 changed files with 6 additions and 6 deletions

View File

@ -56,8 +56,8 @@ const Mode = enum {
table,
};
pub const std_options = struct {
pub const log_level: std.log.Level = .debug;
pub const std_options: std.Options = .{
.log_level = .debug,
};
pub fn main() !void {

View File

@ -48,8 +48,8 @@ const Mode = enum {
table,
};
pub const std_options = struct {
pub const log_level: std.log.Level = .debug;
pub const std_options: std.Options = .{
.log_level = .debug,
};
pub fn main() !void {

View File

@ -70,8 +70,8 @@ const Mode = enum {
@"gen-rand",
};
pub const std_options = struct {
pub const log_level: std.log.Level = .debug;
pub const std_options: std.Options = .{
.log_level = .debug,
};
pub fn main() !void {