Skip to content

Commit d5272de

Browse files
committed
[atomics.ref.float] Don't insert italic correction before a comma.
1 parent 3d3f16f commit d5272de

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

source/atomics.tex

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1268,26 +1268,26 @@
12681268
operator @\placeholdernc{floating-point}@() const noexcept;
12691269

12701270
bool is_lock_free() const noexcept;
1271-
void store(@\placeholder{floating-point}@, memory_order = memory_order_seq_cst) const noexcept;
1271+
void store(@\placeholdernc{floating-point}@, memory_order = memory_order_seq_cst) const noexcept;
12721272
@\placeholder{floating-point}@ load(memory_order = memory_order_seq_cst) const noexcept;
1273-
@\placeholder{floating-point}@ exchange(@\placeholder{floating-point}@,
1273+
@\placeholder{floating-point}@ exchange(@\placeholdernc{floating-point}@,
12741274
memory_order = memory_order_seq_cst) const noexcept;
1275-
bool compare_exchange_weak(@\placeholder{floating-point}@&, @\placeholder{floating-point}@,
1275+
bool compare_exchange_weak(@\placeholder{floating-point}@&, @\placeholdernc{floating-point}@,
12761276
memory_order, memory_order) const noexcept;
1277-
bool compare_exchange_strong(@\placeholder{floating-point}@&, @\placeholder{floating-point}@,
1277+
bool compare_exchange_strong(@\placeholder{floating-point}@&, @\placeholdernc{floating-point}@,
12781278
memory_order, memory_order) const noexcept;
1279-
bool compare_exchange_weak(@\placeholder{floating-point}@&, @\placeholder{floating-point}@,
1279+
bool compare_exchange_weak(@\placeholder{floating-point}@&, @\placeholdernc{floating-point}@,
12801280
memory_order = memory_order_seq_cst) const noexcept;
1281-
bool compare_exchange_strong(@\placeholder{floating-point}@&, @\placeholder{floating-point}@,
1281+
bool compare_exchange_strong(@\placeholder{floating-point}@&, @\placeholdernc{floating-point}@,
12821282
memory_order = memory_order_seq_cst) const noexcept;
12831283

12841284
void wait(@\placeholdernc{floating-point}@, memory_order = memory_order::seq_cst) const noexcept;
12851285
void notify_one() noexcept;
12861286
void notify_all() noexcept;
12871287

1288-
@\placeholder{floating-point}@ fetch_add(@\placeholder{floating-point}@,
1288+
@\placeholder{floating-point}@ fetch_add(@\placeholdernc{floating-point}@,
12891289
memory_order = memory_order_seq_cst) const noexcept;
1290-
@\placeholder{floating-point}@ fetch_sub(@\placeholder{floating-point}@,
1290+
@\placeholder{floating-point}@ fetch_sub(@\placeholdernc{floating-point}@,
12911291
memory_order = memory_order_seq_cst) const noexcept;
12921292

12931293
@\placeholder{floating-point}@ operator+=(@\placeholder{floating-point}@) const noexcept;

0 commit comments

Comments
 (0)