public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-9130] libstdc++: Add missing std::move to join_view::iterator ctor [PR101483]
@ 2021-10-12 18:09 Patrick Palka
  0 siblings, 0 replies; only message in thread
From: Patrick Palka @ 2021-10-12 18:09 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:58873a565898550893165427ccbef343f1390b9c

commit r11-9130-g58873a565898550893165427ccbef343f1390b9c
Author: Patrick Palka <ppalka@redhat.com>
Date:   Mon Aug 2 15:30:10 2021 -0400

    libstdc++: Add missing std::move to join_view::iterator ctor [PR101483]
    
            PR libstdc++/101483
    
    libstdc++-v3/ChangeLog:
    
            * include/std/ranges (join_view::_Iterator::_Iterator): Add
            missing std::move.
    
    (cherry picked from commit 0e1bb3c88c7bd624bc34d6cebe3df9532f1858f0)

Diff:
---
 libstdc++-v3/include/std/ranges | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libstdc++-v3/include/std/ranges b/libstdc++-v3/include/std/ranges
index c507862660b..b7886346bde 100644
--- a/libstdc++-v3/include/std/ranges
+++ b/libstdc++-v3/include/std/ranges
@@ -2519,7 +2519,7 @@ namespace views::__adaptor
 	    requires _Const
 	      && convertible_to<iterator_t<_Vp>, _Outer_iter>
 	      && convertible_to<iterator_t<_InnerRange>, _Inner_iter>
-	    : _M_outer(std::move(__i._M_outer)), _M_inner(__i._M_inner),
+	    : _M_outer(std::move(__i._M_outer)), _M_inner(std::move(__i._M_inner)),
 	      _M_parent(__i._M_parent)
 	  { }


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

only message in thread, other threads:[~2021-10-12 18:09 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-12 18:09 [gcc r11-9130] libstdc++: Add missing std::move to join_view::iterator ctor [PR101483] Patrick Palka

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).