authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-11-12 09:40:40+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-01-09 14:00:21-07:00
log56195aa73cc903d3b14e05431deb5ef33cc3dec7
treeb1f88173e3f2b29518ecfb641c7a4cb204e1349e
parentbc3324365090f3c9077df147b52fbc0c3c19b753

pdb: make SuperBlock def public


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/pdb.zig+2-2
...@@ -972,9 +972,9 @@ fn blockCountFromSize(size: u32, block_size: u32) u32 {...@@ -972,9 +972,9 @@ fn blockCountFromSize(size: u32, block_size: u32) u32 {
972}972}
973973
974// https://llvm.org/docs/PDB/MsfFile.html#the-superblock974// https://llvm.org/docs/PDB/MsfFile.html#the-superblock
975const SuperBlock = extern struct {975pub const SuperBlock = extern struct {
976 /// The LLVM docs list a space between C / C++ but empirically this is not the case.976 /// The LLVM docs list a space between C / C++ but empirically this is not the case.
977 const file_magic = "Microsoft C/C++ MSF 7.00\r\n\x1a\x44\x53\x00\x00\x00";977 pub const file_magic = "Microsoft C/C++ MSF 7.00\r\n\x1a\x44\x53\x00\x00\x00";
978978
979 FileMagic: [file_magic.len]u8,979 FileMagic: [file_magic.len]u8,
980980