https://gcc.gnu.org/g:71f221a8bee6274f37af99138b41c3ae451527ef

commit r15-5297-g71f221a8bee6274f37af99138b41c3ae451527ef
Author: Jonathan Wakely <jwak...@redhat.com>
Date:   Fri Nov 15 00:00:38 2024 +0000

    libstdc++: Fix indentation in std::list::emplace_back
    
    libstdc++-v3/ChangeLog:
    
            * include/bits/stl_list.h (list::emplace_back): Fix indentation.

Diff:
---
 libstdc++-v3/include/bits/stl_list.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libstdc++-v3/include/bits/stl_list.h 
b/libstdc++-v3/include/bits/stl_list.h
index 3c313cec1d89..7deb04b4bfe4 100644
--- a/libstdc++-v3/include/bits/stl_list.h
+++ b/libstdc++-v3/include/bits/stl_list.h
@@ -1410,7 +1410,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        {
          this->_M_insert(end(), std::forward<_Args>(__args)...);
 #if __cplusplus > 201402L
-       return back();
+         return back();
 #endif
        }
 #endif

Reply via email to