aboutsummaryrefslogtreecommitdiff
path: root/std/coff.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-08-30 16:57:55 -0400
committerAndrew Kelley <superjoe30@gmail.com>2018-08-30 16:57:55 -0400
commit72185e7dd36d9b87c57a3ed3719b9824ca11edf9 (patch)
tree33d246343abb11bc670fc1bbbc7530d130bcc142 /std/coff.zig
parent44f908d2e63d761e183e266248e777fe74184f44 (diff)
downloadzig-72185e7dd36d9b87c57a3ed3719b9824ca11edf9.tar.gz
zig-72185e7dd36d9b87c57a3ed3719b9824ca11edf9.zip
finding the function that an address is in
Diffstat (limited to 'std/coff.zig')
-rw-r--r--std/coff.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/coff.zig b/std/coff.zig
index cce001d618..2921109bd6 100644
--- a/std/coff.zig
+++ b/std/coff.zig
@@ -215,7 +215,7 @@ const OptionalHeader = struct {
data_directory: [IMAGE_NUMBEROF_DIRECTORY_ENTRIES]DataDirectory,
};
-const Section = struct {
+pub const Section = struct {
header: SectionHeader,
};