Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0d81f96

Browse filesBrowse files
authored
[atomics.syn] Fix indentation (#7853)
1 parent 05300d7 commit 0d81f96
Copy full SHA for 0d81f96

File tree

1 file changed

+13
-13
lines changed
Filter options

1 file changed

+13
-13
lines changed

‎source/threads.tex

Copy file name to clipboardExpand all lines: source/threads.tex
+13-13Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2488,19 +2488,19 @@
24882488
memory_order, memory_order) noexcept;
24892489
template<class T>
24902490
constexpr bool atomic_compare_exchange_weak_explicit(atomic<T>*, // freestanding
2491-
typename atomic<T>::value_type*,
2492-
typename atomic<T>::value_type,
2493-
memory_order, memory_order) noexcept;
2491+
typename atomic<T>::value_type*,
2492+
typename atomic<T>::value_type,
2493+
memory_order, memory_order) noexcept;
24942494
template<class T>
24952495
bool atomic_compare_exchange_strong_explicit(volatile atomic<T>*, // freestanding
24962496
typename atomic<T>::value_type*,
24972497
typename atomic<T>::value_type,
24982498
memory_order, memory_order) noexcept;
24992499
template<class T>
25002500
constexpr bool atomic_compare_exchange_strong_explicit(atomic<T>*, // freestanding
2501-
typename atomic<T>::value_type*,
2502-
typename atomic<T>::value_type,
2503-
memory_order, memory_order) noexcept;
2501+
typename atomic<T>::value_type*,
2502+
typename atomic<T>::value_type,
2503+
memory_order, memory_order) noexcept;
25042504

25052505
template<class T>
25062506
T atomic_fetch_add(volatile atomic<T>*, // freestanding
@@ -2577,29 +2577,29 @@
25772577
typename atomic<T>::value_type) noexcept;
25782578
template<class T>
25792579
constexpr T atomic_fetch_max(atomic<T>*, // freestanding
2580-
typename atomic<T>::value_type) noexcept;
2580+
typename atomic<T>::value_type) noexcept;
25812581
template<class T>
25822582
T atomic_fetch_max_explicit(volatile atomic<T>*, // freestanding
25832583
typename atomic<T>::value_type,
25842584
memory_order) noexcept;
25852585
template<class T>
25862586
constexpr T atomic_fetch_max_explicit(atomic<T>*, // freestanding
2587-
typename atomic<T>::value_type,
2588-
memory_order) noexcept;
2587+
typename atomic<T>::value_type,
2588+
memory_order) noexcept;
25892589
template<class T>
25902590
T atomic_fetch_min(volatile atomic<T>*, // freestanding
25912591
typename atomic<T>::value_type) noexcept;
25922592
template<class T>
25932593
constexpr T atomic_fetch_min(atomic<T>*, // freestanding
2594-
typename atomic<T>::value_type) noexcept;
2594+
typename atomic<T>::value_type) noexcept;
25952595
template<class T>
25962596
T atomic_fetch_min_explicit(volatile atomic<T>*, // freestanding
25972597
typename atomic<T>::value_type,
25982598
memory_order) noexcept;
25992599
template<class T>
26002600
constexpr T atomic_fetch_min_explicit(atomic<T>*, // freestanding
2601-
typename atomic<T>::value_type,
2602-
memory_order) noexcept;
2601+
typename atomic<T>::value_type,
2602+
memory_order) noexcept;
26032603
template<class T>
26042604
void atomic_wait(const volatile atomic<T>*, // freestanding
26052605
typename atomic<T>::value_type) noexcept;
@@ -2703,7 +2703,7 @@
27032703
void atomic_flag_wait_explicit(const volatile atomic_flag*, // freestanding
27042704
bool, memory_order) noexcept;
27052705
constexpr void atomic_flag_wait_explicit(const atomic_flag*, // freestanding
2706-
bool, memory_order) noexcept;
2706+
bool, memory_order) noexcept;
27072707
void atomic_flag_notify_one(volatile atomic_flag*) noexcept; // freestanding
27082708
constexpr void atomic_flag_notify_one(atomic_flag*) noexcept; // freestanding
27092709
void atomic_flag_notify_all(volatile atomic_flag*) noexcept; // freestanding

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.