mirror of
https://github.com/ziglang/zig.git
synced 2026-02-11 12:01:18 +00:00
Fixed values in AtomicOrdering enum
This commit is contained in:
parent
fd3b81f93b
commit
6df8302be6
@ -7085,10 +7085,10 @@ pub const AtomicOrdering = enum(u3) {
|
||||
none = 0,
|
||||
unordered = 1,
|
||||
monotonic = 2,
|
||||
acquire = 4,
|
||||
release = 5,
|
||||
acq_rel = 6,
|
||||
seq_cst = 7,
|
||||
acquire = 3,
|
||||
release = 4,
|
||||
acq_rel = 5,
|
||||
seq_cst = 6,
|
||||
|
||||
pub fn format(
|
||||
self: AtomicOrdering,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user