aboutsummaryrefslogtreecommitdiff
path: root/src/link/Coff/Object.zig
blob: 63bbd0746308a13abb597abee649c59d5d887f73 (plain)
1
2
3
4
5
6
7
8
9
10
11
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);
}