| ... | @@ -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 | } |
| 973 | | 973 | |
| 974 | // https://llvm.org/docs/PDB/MsfFile.html#the-superblock | 974 | // https://llvm.org/docs/PDB/MsfFile.html#the-superblock |
| 975 | const SuperBlock = extern struct { | 975 | pub 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"; |
| 978 | | 978 | |
| 979 | FileMagic: [file_magic.len]u8, | 979 | FileMagic: [file_magic.len]u8, |
| 980 | | 980 | |