]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Cleanup trailing whitespace from r16-8429-g8b95d5f5b22621.
authorTomasz Kamiński <tkaminsk@redhat.com>
Thu, 2 Jul 2026 10:29:36 +0000 (12:29 +0200)
committerTomasz Kamiński <tkaminsk@redhat.com>
Thu, 2 Jul 2026 10:31:53 +0000 (12:31 +0200)
libstdc++-v3/ChangeLog:

* include/bits/version.def: Remove trailing whitespaces.
* include/std/inplace_vector: Likewise.
* testsuite/23_containers/inplace_vector/modifiers/single_insert.cc:
Likewise.

libstdc++-v3/include/bits/version.def
libstdc++-v3/include/std/inplace_vector
libstdc++-v3/testsuite/23_containers/inplace_vector/modifiers/single_insert.cc

index e149ee265cd4256f8393a3a489ab9dfad97b7b3b..873cebb904d64491bcf7f9aeaf46d9f075f62161 100644 (file)
@@ -408,7 +408,7 @@ ftms = {
 
 ftms = {
   name = constant_wrapper;
-  // 202506 P2781R9 std::constexpr_wrapper 
+  // 202506 P2781R9 std::constexpr_wrapper
   // 202603 P3978R3 constant_wrapper should unwrap on call and subscript
   // 202606 P4206R0 Revert string support in std::constant_wrapper
   values = {
@@ -1128,8 +1128,8 @@ ftms = {
   // 202306 P2630R4 Submdspan
   // 202403 P2642R6 Padded mdspan layouts
   // 202411 P3355R1 Fix submdspan for C++26
-  // 202511 P3663R3 Future-proof submdspan-mapping  
-  // 202603 P3982R1 Split strided_slice into extent_slice and range_slice for C++26                                                          
+  // 202511 P3663R3 Future-proof submdspan-mapping
+  // 202603 P3982R1 Split strided_slice into extent_slice and range_slice for C++26
   values = {
     v = 202603;
     cxxmin = 26;
@@ -2282,7 +2282,7 @@ ftms = {
 };
 
 ftms = {
-  // 202406 P0843R14 inplace_vector 
+  // 202406 P0843R14 inplace_vector
   // 202603 P3981R2 Better return types in std::inplace_vector and std::exception_ptr_cast
   //        P4022R0 Remove try_append_range from inplace_vector for now
   name = inplace_vector;
index 8bd890042969b760584dfb2d395c446341b20a2b..6d67a740f21ded4e188c09af4b2008a42f65a9bf 100644 (file)
@@ -121,7 +121,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
        constexpr
        inplace_vector(from_range_t, _Rg&& __rg)
        : inplace_vector()
-       { 
+       {
          // _GLIBCXX_RESOLVE_LIB_DEFECTS
          // 4396. Improve inplace_vector(from_range_t, R&& rg)
          if constexpr (ranges::__static_sized_range<_Rg>)
@@ -1194,7 +1194,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
       { __builtin_trap(); }
 
       template<typename... _Args>
-        constexpr optional<_Tp&>
+       constexpr optional<_Tp&>
        try_emplace_back(_Args&&...)
        { return nullopt; }
 
index 245af92880097e58e4ac0777e04263ce02c17a00..2b5e76a6f63fdd6ce578ce644553112faa3cb1b6 100644 (file)
@@ -24,7 +24,7 @@ struct Y
 {
   Y() = default;
   constexpr Y(int p) : v(p) {}
-      
+
   constexpr operator std::optional<Y&>()
   { return std::nullopt; }