mirror of
https://github.com/ziglang/zig.git
synced 2026-02-03 13:13:40 +00:00
coff: commit missing Object.zig placeholder
This commit is contained in:
parent
f0d4ce4494
commit
ebdb286736
12
src/link/Coff/Object.zig
Normal file
12
src/link/Coff/Object.zig
Normal file
@ -0,0 +1,12 @@
|
||||
const Object = @This();
|
||||
|
||||
const std = @import("std");
|
||||
const mem = std.mem;
|
||||
|
||||
const Allocator = mem.Allocator;
|
||||
|
||||
name: []const u8,
|
||||
|
||||
pub fn deinit(self: *Object, gpa: Allocator) void {
|
||||
gpa.free(self.name);
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user