diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2024-11-15 00:00:38 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2024-11-15 00:01:51 +0000 |
commit | 71f221a8bee6274f37af99138b41c3ae451527ef (patch) | |
tree | f56e63e39294776dfb8905efedca1f66cf4a0b0a | |
parent | aaada43a2a91194a3c50e364d9dde277fb4b764b (diff) | |
download | gcc-71f221a8bee6274f37af99138b41c3ae451527ef.zip gcc-71f221a8bee6274f37af99138b41c3ae451527ef.tar.gz gcc-71f221a8bee6274f37af99138b41c3ae451527ef.tar.bz2 |
libstdc++: Fix indentation in std::list::emplace_back
libstdc++-v3/ChangeLog:
* include/bits/stl_list.h (list::emplace_back): Fix indentation.
-rw-r--r-- | libstdc++-v3/include/bits/stl_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/stl_list.h b/libstdc++-v3/include/bits/stl_list.h index 3c313ce..7deb04b 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 |