Skip to content

Commit f943a21

Browse files
committed
[atomics] Fix missing italics in 'wait(integral, ...)'
1 parent d88e22d commit f943a21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/atomics.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,7 +1150,7 @@
11501150
bool compare_exchange_strong(@\placeholder{integral}@&, @\placeholder{integral}@,
11511151
memory_order = memory_order_seq_cst) const noexcept;
11521152

1153-
void wait(integral, memory_order = memory_order::seq_cst) const noexcept;
1153+
void wait(@\placeholdernc{integral}@, memory_order = memory_order::seq_cst) const noexcept;
11541154
void notify_one() noexcept;
11551155
void notify_all() noexcept;
11561156

@@ -2080,8 +2080,8 @@
20802080
@\placeholdernc{integral}@ fetch_xor(@\placeholdernc{integral}@, memory_order = memory_order::seq_cst) volatile noexcept;
20812081
@\placeholdernc{integral}@ fetch_xor(@\placeholdernc{integral}@, memory_order = memory_order::seq_cst) noexcept;
20822082

2083-
void wait(integral, memory_order = memory_order::seq_cst) const volatile noexcept;
2084-
void wait(integral, memory_order = memory_order::seq_cst) const noexcept;
2083+
void wait(@\placeholdernc{integral}@, memory_order = memory_order::seq_cst) const volatile noexcept;
2084+
void wait(@\placeholdernc{integral}@, memory_order = memory_order::seq_cst) const noexcept;
20852085
void notify_one() volatile noexcept;
20862086
void notify_one() noexcept;
20872087
void notify_all() volatile noexcept;

0 commit comments

Comments
 (0)