| author | |
| committer | |
| log | 8fa29bc0a235fb123c02e89936d0699906831a37 |
| tree | 6fa22be86cad4c3ace5274bcfbada33f17182178 |
| parent | eb4d93ece3f9fb218a644e32823fb0052fe22653 |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/atomic/int.zig+1-1| ... | ... | @@ -19,7 +19,7 @@ pub fn Int(comptime T: type) type { |
| 19 | 19 | |
| 20 | 20 | /// Read, Modify, Write |
| 21 | 21 | pub fn rmw(self: *Self, comptime op: builtin.AtomicRmwOp, operand: T, comptime ordering: builtin.AtomicOrder) T { |
| 22 | return @atomicRmw(T, &self.unprotected_value, operand, ordering); | |
| 22 | return @atomicRmw(T, &self.unprotected_value, op, operand, ordering); | |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | pub fn load(self: *Self, comptime ordering: builtin.AtomicOrder) T { |