| author | |
| committer | |
| log | 513e8161dd3a06ecf95b7eecba3f181445c2ee0c |
| tree | 771ba67b2bf93cd9ba89e2c724581f65b10f47c0 |
| parent | c492ef97fdc7c7c71c4656b0553214c61604be49 |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/atomic/int.zig+1-1| ... | ... | @@ -8,7 +8,7 @@ const builtin = @import("std").builtin; |
| 8 | 8 | |
| 9 | 9 | /// Thread-safe, lock-free integer |
| 10 | 10 | pub fn Int(comptime T: type) type { |
| 11 | return struct { | |
| 11 | return extern struct { | |
| 12 | 12 | unprotected_value: T, |
| 13 | 13 | |
| 14 | 14 | pub const Self = @This(); |