aboutsummaryrefslogtreecommitdiff
path: root/src/link/Coff/ImportTable.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2023-03-28 21:42:55 +0200
committerJakub Konka <kubkon@jakubkonka.com>2023-03-28 21:42:55 +0200
commitcde722a7117b6da129d3c49dabd445136ed5edb5 (patch)
tree5fa9aae95c52832d53d0b2ee3f4a635e28135bf9 /src/link/Coff/ImportTable.zig
parent25f3175217dace219af643bce7bd28913a970362 (diff)
downloadzig-cde722a7117b6da129d3c49dabd445136ed5edb5.tar.gz
zig-cde722a7117b6da129d3c49dabd445136ed5edb5.zip
coff: put section growing in helper; only mark section if actually resolved
Diffstat (limited to 'src/link/Coff/ImportTable.zig')
-rw-r--r--src/link/Coff/ImportTable.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/link/Coff/ImportTable.zig b/src/link/Coff/ImportTable.zig
index ba58af2fe0..c3ba77e855 100644
--- a/src/link/Coff/ImportTable.zig
+++ b/src/link/Coff/ImportTable.zig
@@ -121,7 +121,7 @@ pub fn fmtDebug(itab: ImportTable, ctx: Context) std.fmt.Formatter(fmt) {
return .{ .data = .{ .itab = itab, .ctx = ctx } };
}
-const ImportIndex = u32;
+pub const ImportIndex = u32;
const ImportTable = @This();
const std = @import("std");