Replace deprecated default initializations with decl literals

This commit is contained in:
Linus Groh
2024-09-02 22:32:21 +01:00
parent eccd06f5d0
commit 8588964972
152 changed files with 813 additions and 813 deletions

View File

@@ -402,7 +402,7 @@ fn oom(err: anytype) noreturn {
}
}
var general_purpose_allocator: std.heap.GeneralPurposeAllocator(.{}) = .{};
var general_purpose_allocator: std.heap.GeneralPurposeAllocator(.{}) = .init;
var fuzzer: Fuzzer = .{
.gpa = general_purpose_allocator.allocator(),