commit 56195aa73cc903d3b14e05431deb5ef33cc3dec7 (tree) parent bc3324365090f3c9077df147b52fbc0c3c19b753 Author: Jakub Konka <kubkon@jakubkonka.com> Date: Sat, 12 Nov 2022 09:40:40 +0100 pdb: make SuperBlock def public Diffstat:
| M | lib/std/pdb.zig | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/std/pdb.zig b/lib/std/pdb.zig @@ -972,9 +972,9 @@ fn blockCountFromSize(size: u32, block_size: u32) u32 { } // https://llvm.org/docs/PDB/MsfFile.html#the-superblock -const SuperBlock = extern struct { +pub const SuperBlock = extern struct { /// The LLVM docs list a space between C / C++ but empirically this is not the case. - const file_magic = "Microsoft C/C++ MSF 7.00\r\n\x1a\x44\x53\x00\x00\x00"; + pub const file_magic = "Microsoft C/C++ MSF 7.00\r\n\x1a\x44\x53\x00\x00\x00"; FileMagic: [file_magic.len]u8,