Skip to content

Commit 53ec473

Browse files
committed
[atomics.ref.float] Apply design intent of P3323R1 to new functions
1 parent 2fdfad1 commit 53ec473

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

source/threads.tex

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3773,18 +3773,18 @@
37733773
constexpr value_type fetch_sub(value_type,
37743774
memory_order = memory_order::seq_cst) const noexcept;
37753775

3776-
constexpr @\placeholdernc{floating-point-type}@ fetch_max(@\placeholdernc{floating-point-type}@,
3777-
memory_order = memory_order::seq_cst) const noexcept;
3778-
constexpr @\placeholdernc{floating-point-type}@ fetch_min(@\placeholdernc{floating-point-type}@,
3779-
memory_order = memory_order::seq_cst) const noexcept;
3780-
constexpr @\placeholdernc{floating-point-type}@ fetch_fmaximum(@\placeholdernc{floating-point-type}@,
3781-
memory_order = memory_order::seq_cst) const noexcept;
3782-
constexpr @\placeholdernc{floating-point-type}@ fetch_fminimum(@\placeholdernc{floating-point-type}@,
3783-
memory_order = memory_order::seq_cst) const noexcept;
3784-
constexpr @\placeholdernc{floating-point-type}@ fetch_fmaximum_num(@\placeholdernc{floating-point}@,
3785-
memory_order = memory_order::seq_cst) const noexcept;
3786-
constexpr @\placeholdernc{floating-point-type}@ fetch_fminimum_num(@\placeholdernc{floating-point-type}@,
3787-
memory_order = memory_order::seq_cst) const noexcept;
3776+
constexpr value_type fetch_max(value_type,
3777+
memory_order = memory_order::seq_cst) const noexcept;
3778+
constexpr value_type fetch_min(value_type,
3779+
memory_order = memory_order::seq_cst) const noexcept;
3780+
constexpr value_type fetch_fmaximum(value_type,
3781+
memory_order = memory_order::seq_cst) const noexcept;
3782+
constexpr valu_type fetch_fminimum(value_type,
3783+
memory_order = memory_order::seq_cst) const noexcept;
3784+
constexpr value_type fetch_fmaximum_num(value_type,
3785+
memory_order = memory_order::seq_cst) const noexcept;
3786+
constexpr value_type fetch_fminimum_num(value_type,
3787+
memory_order = memory_order::seq_cst) const noexcept;
37883788

37893789
constexpr value_type operator+=(value_type) const noexcept;
37903790
constexpr value_type operator-=(value_type) const noexcept;

0 commit comments

Comments
 (0)