libstdc++: Break long lines to fit in 80 columns
authorJonathan Wakely <jwakely@redhat.com>
Wed, 5 Aug 2020 21:48:17 +0000 (22:48 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Wed, 5 Aug 2020 21:48:17 +0000 (22:48 +0100)
libstdc++-v3/ChangeLog:

* include/std/atomic (atomic<T>::store): Reformat.

libstdc++-v3/include/std/atomic

index 2161cbed0d293610b7695267c8fe75a2bce8e296..1a304261fe7bb46e750c2e4069109c54da539645 100644 (file)
@@ -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