Skip to content

Navigation Menu

Sign in
Appearance settings

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

[atomics.syn] Fix indentation #7853

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[atomics.syn] Fix indentation
  • Loading branch information
Andreas-Krug authored Apr 24, 2025
commit b53a93ff37cf22289cbcc74a27f97c9808c77bee
26 changes: 13 additions & 13 deletions 26 source/threads.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2488,19 +2488,19 @@
memory_order, memory_order) noexcept;
template<class T>
constexpr bool atomic_compare_exchange_weak_explicit(atomic<T>*, // freestanding
typename atomic<T>::value_type*,
typename atomic<T>::value_type,
memory_order, memory_order) noexcept;
typename atomic<T>::value_type*,
typename atomic<T>::value_type,
memory_order, memory_order) noexcept;
template<class T>
bool atomic_compare_exchange_strong_explicit(volatile atomic<T>*, // freestanding
typename atomic<T>::value_type*,
typename atomic<T>::value_type,
memory_order, memory_order) noexcept;
template<class T>
constexpr bool atomic_compare_exchange_strong_explicit(atomic<T>*, // freestanding
typename atomic<T>::value_type*,
typename atomic<T>::value_type,
memory_order, memory_order) noexcept;
typename atomic<T>::value_type*,
typename atomic<T>::value_type,
memory_order, memory_order) noexcept;

template<class T>
T atomic_fetch_add(volatile atomic<T>*, // freestanding
Expand Down Expand Up @@ -2577,29 +2577,29 @@
typename atomic<T>::value_type) noexcept;
template<class T>
constexpr T atomic_fetch_max(atomic<T>*, // freestanding
typename atomic<T>::value_type) noexcept;
typename atomic<T>::value_type) noexcept;
template<class T>
T atomic_fetch_max_explicit(volatile atomic<T>*, // freestanding
typename atomic<T>::value_type,
memory_order) noexcept;
template<class T>
constexpr T atomic_fetch_max_explicit(atomic<T>*, // freestanding
typename atomic<T>::value_type,
memory_order) noexcept;
typename atomic<T>::value_type,
memory_order) noexcept;
template<class T>
T atomic_fetch_min(volatile atomic<T>*, // freestanding
typename atomic<T>::value_type) noexcept;
template<class T>
constexpr T atomic_fetch_min(atomic<T>*, // freestanding
typename atomic<T>::value_type) noexcept;
typename atomic<T>::value_type) noexcept;
template<class T>
T atomic_fetch_min_explicit(volatile atomic<T>*, // freestanding
typename atomic<T>::value_type,
memory_order) noexcept;
template<class T>
constexpr T atomic_fetch_min_explicit(atomic<T>*, // freestanding
typename atomic<T>::value_type,
memory_order) noexcept;
typename atomic<T>::value_type,
memory_order) noexcept;
template<class T>
void atomic_wait(const volatile atomic<T>*, // freestanding
typename atomic<T>::value_type) noexcept;
Expand Down Expand Up @@ -2703,7 +2703,7 @@
void atomic_flag_wait_explicit(const volatile atomic_flag*, // freestanding
bool, memory_order) noexcept;
constexpr void atomic_flag_wait_explicit(const atomic_flag*, // freestanding
bool, memory_order) noexcept;
bool, memory_order) noexcept;
void atomic_flag_notify_one(volatile atomic_flag*) noexcept; // freestanding
constexpr void atomic_flag_notify_one(atomic_flag*) noexcept; // freestanding
void atomic_flag_notify_all(volatile atomic_flag*) noexcept; // freestanding
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.