| author | |
| committer | |
| log | 22925636f7afc0f334f1d44257c007a1d2ccd63f |
| tree | dc70746d82a3b8e32075141b8cb86195eb16970b |
| parent | b9fd0eeca6ba45058ed67fc211bb50a93c971a28 |
helps the serialization use case1 files changed, 2 insertions(+), 2 deletions(-)
lib/std/debug/Coverage.zig+2-2| ... | ... | @@ -65,7 +65,7 @@ pub const String = enum(u32) { |
| 65 | 65 | }; |
| 66 | 66 | }; |
| 67 | 67 | |
| 68 | pub const SourceLocation = struct { | |
| 68 | pub const SourceLocation = extern struct { | |
| 69 | 69 | file: File.Index, |
| 70 | 70 | line: u32, |
| 71 | 71 | column: u32, |
| ... | ... | @@ -77,7 +77,7 @@ pub const SourceLocation = struct { |
| 77 | 77 | }; |
| 78 | 78 | }; |
| 79 | 79 | |
| 80 | pub const File = struct { | |
| 80 | pub const File = extern struct { | |
| 81 | 81 | directory_index: u32, |
| 82 | 82 | basename: String, |
| 83 | 83 |