| ... | @@ -58,7 +58,7 @@ export fn alloc(n: usize) [*]u8 { | ... | @@ -58,7 +58,7 @@ export fn alloc(n: usize) [*]u8 { |
| 58 | return slice.ptr; | 58 | return slice.ptr; |
| 59 | } | 59 | } |
| 60 | | 60 | |
| 61 | var message_buffer: std.ArrayListAlignedUnmanaged(u8, @alignOf(u64)) = .empty; | 61 | var message_buffer: std.ArrayListAlignedUnmanaged(u8, .of(u64)) = .empty; |
| 62 | | 62 | |
| 63 | /// Resizes the message buffer to be the correct length; returns the pointer to | 63 | /// Resizes the message buffer to be the correct length; returns the pointer to |
| 64 | /// the query string. | 64 | /// the query string. |
| ... | @@ -376,7 +376,7 @@ var coverage = Coverage.init; | ... | @@ -376,7 +376,7 @@ var coverage = Coverage.init; |
| 376 | /// Index of type `SourceLocationIndex`. | 376 | /// Index of type `SourceLocationIndex`. |
| 377 | var coverage_source_locations: std.ArrayListUnmanaged(Coverage.SourceLocation) = .empty; | 377 | var coverage_source_locations: std.ArrayListUnmanaged(Coverage.SourceLocation) = .empty; |
| 378 | /// Contains the most recent coverage update message, unmodified. | 378 | /// Contains the most recent coverage update message, unmodified. |
| 379 | var recent_coverage_update: std.ArrayListAlignedUnmanaged(u8, @alignOf(u64)) = .empty; | 379 | var recent_coverage_update: std.ArrayListAlignedUnmanaged(u8, .of(u64)) = .empty; |
| 380 | | 380 | |
| 381 | fn updateCoverage( | 381 | fn updateCoverage( |
| 382 | directories: []const Coverage.String, | 382 | directories: []const Coverage.String, |