public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/giulianob/heads/autopar_rebase2)] libstdc++: Break long lines to fit in 80 columns
@ 2020-08-18  1:30 Giuliano Belinassi
  0 siblings, 0 replies; only message in thread
From: Giuliano Belinassi @ 2020-08-18  1:30 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:f0fae442bfaa7bda9bcd57c631a7faf8d05b576b

commit f0fae442bfaa7bda9bcd57c631a7faf8d05b576b
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Wed Aug 5 22:48:17 2020 +0100

    libstdc++: Break long lines to fit in 80 columns
    
    libstdc++-v3/ChangeLog:
    
            * include/std/atomic (atomic<T>::store): Reformat.

Diff:
---
 libstdc++-v3/include/std/atomic | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/libstdc++-v3/include/std/atomic b/libstdc++-v3/include/std/atomic
index 2161cbed0d2..1a304261fe7 100644
--- a/libstdc++-v3/include/std/atomic
+++ b/libstdc++-v3/include/std/atomic
@@ -251,11 +251,15 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
       void
       store(_Tp __i, memory_order __m = memory_order_seq_cst) noexcept
-      { __atomic_store(std::__addressof(_M_i), std::__addressof(__i), int(__m)); }
+      {
+	__atomic_store(std::__addressof(_M_i), std::__addressof(__i), int(__m));
+      }
 
       void
       store(_Tp __i, memory_order __m = memory_order_seq_cst) volatile noexcept
-      { __atomic_store(std::__addressof(_M_i), std::__addressof(__i), int(__m)); }
+      {
+	__atomic_store(std::__addressof(_M_i), std::__addressof(__i), int(__m));
+      }
 
       _Tp
       load(memory_order __m = memory_order_seq_cst) const noexcept


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-08-18  1:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-18  1:30 [gcc(refs/users/giulianob/heads/autopar_rebase2)] libstdc++: Break long lines to fit in 80 columns Giuliano Belinassi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).