* [PATCH] libstdc++: Implement LWG 3546 changes to common_iterator
@ 2021-06-18 3:59 Patrick Palka
2021-06-18 21:54 ` Jonathan Wakely
0 siblings, 1 reply; 2+ messages in thread
From: Patrick Palka @ 2021-06-18 3:59 UTC (permalink / raw)
To: gcc-patches; +Cc: libstdc++, Patrick Palka
libstdc++-v3/ChangeLog:
* include/bits/stl_iterator.h
(__detail::__common_iter_use_postfix_proxy): Add
move_constructible constraint as LWG 3546.
(common_iterator::__postfix_proxy): Adjust initializer of
_M_keep as per LWG 3546.
---
libstdc++-v3/include/bits/stl_iterator.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/libstdc++-v3/include/bits/stl_iterator.h b/libstdc++-v3/include/bits/stl_iterator.h
index 6ec046b597b..7fe727d8093 100644
--- a/libstdc++-v3/include/bits/stl_iterator.h
+++ b/libstdc++-v3/include/bits/stl_iterator.h
@@ -1672,7 +1672,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
template<typename _It>
concept __common_iter_use_postfix_proxy
= (!requires (_It& __i) { { *__i++ } -> __can_reference; })
- && constructible_from<iter_value_t<_It>, iter_reference_t<_It>>;
+ && constructible_from<iter_value_t<_It>, iter_reference_t<_It>>
+ && move_constructible<iter_value_t<_It>>;
} // namespace __detail
/// An iterator/sentinel adaptor for representing a non-common range.
@@ -1715,7 +1716,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
iter_value_t<_It> _M_keep;
__postfix_proxy(iter_reference_t<_It>&& __x)
- : _M_keep(std::move(__x)) { }
+ : _M_keep(std::forward<iter_reference_t<_It>>(__x)) { }
friend class common_iterator;
--
2.32.0.93.g670b81a890
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] libstdc++: Implement LWG 3546 changes to common_iterator
2021-06-18 3:59 [PATCH] libstdc++: Implement LWG 3546 changes to common_iterator Patrick Palka
@ 2021-06-18 21:54 ` Jonathan Wakely
0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Wakely @ 2021-06-18 21:54 UTC (permalink / raw)
To: Patrick Palka; +Cc: gcc Patches, libstdc++
On Fri, 18 Jun 2021 at 04:59, Patrick Palka via Libstdc++
<libstdc++@gcc.gnu.org> wrote:
>
> libstdc++-v3/ChangeLog:
>
> * include/bits/stl_iterator.h
> (__detail::__common_iter_use_postfix_proxy): Add
> move_constructible constraint as LWG 3546.
> (common_iterator::__postfix_proxy): Adjust initializer of
> _M_keep as per LWG 3546.
OK, thanks
> ---
> libstdc++-v3/include/bits/stl_iterator.h | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/libstdc++-v3/include/bits/stl_iterator.h b/libstdc++-v3/include/bits/stl_iterator.h
> index 6ec046b597b..7fe727d8093 100644
> --- a/libstdc++-v3/include/bits/stl_iterator.h
> +++ b/libstdc++-v3/include/bits/stl_iterator.h
> @@ -1672,7 +1672,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
> template<typename _It>
> concept __common_iter_use_postfix_proxy
> = (!requires (_It& __i) { { *__i++ } -> __can_reference; })
> - && constructible_from<iter_value_t<_It>, iter_reference_t<_It>>;
> + && constructible_from<iter_value_t<_It>, iter_reference_t<_It>>
> + && move_constructible<iter_value_t<_It>>;
> } // namespace __detail
>
> /// An iterator/sentinel adaptor for representing a non-common range.
> @@ -1715,7 +1716,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
> iter_value_t<_It> _M_keep;
>
> __postfix_proxy(iter_reference_t<_It>&& __x)
> - : _M_keep(std::move(__x)) { }
> + : _M_keep(std::forward<iter_reference_t<_It>>(__x)) { }
>
> friend class common_iterator;
>
> --
> 2.32.0.93.g670b81a890
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-06-18 21:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-18 3:59 [PATCH] libstdc++: Implement LWG 3546 changes to common_iterator Patrick Palka
2021-06-18 21:54 ` Jonathan Wakely
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).