authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-11-12 09:40:40+01:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-11-12 09:40:40+01:00
log7733246d6e22573fdc9c9cd3a6a1c5c0d228ebfb
tree0623e5aecb74de9ca9244790dd3a47f89a9035eb
parentdf7223c7f2504b8f98526a86630bd6a7c07720a9

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 {
972972}
973973
974974// https://llvm.org/docs/PDB/MsfFile.html#the-superblock
975const SuperBlock = extern struct {
975pub const SuperBlock = extern struct {
976976 /// 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
979979 FileMagic: [file_magic.len]u8,
980980