Skip to content

[libc++] LWG3672: common_iterator::operator->() should return by value #87899

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libcxx/docs/Status/Cxx23Issues.csv
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
"`3659 <https://wg21.link/LWG3659>`__","Consider ``ATOMIC_FLAG_INIT`` undeprecation","July 2022","|Complete|","15.0"
"`3670 <https://wg21.link/LWG3670>`__","``Cpp17InputIterators`` don't have integer-class difference types","July 2022","","","|ranges|"
"`3671 <https://wg21.link/LWG3671>`__","``atomic_fetch_xor`` missing from ``stdatomic.h``","July 2022","",""
"`3672 <https://wg21.link/LWG3672>`__","``common_iterator::operator->()`` should return by value","July 2022","","","|ranges|"
"`3672 <https://wg21.link/LWG3672>`__","``common_iterator::operator->()`` should return by value","July 2022","|Complete|","19.0","|ranges|"
"`3683 <https://wg21.link/LWG3683>`__","``operator==`` for ``polymorphic_allocator`` cannot deduce template argument in common cases","July 2022","",""
"`3687 <https://wg21.link/LWG3687>`__","``expected<cv void, E>`` move constructor should move","July 2022","|Complete|","16.0"
"`3692 <https://wg21.link/LWG3692>`__","``zip_view::iterator``'s ``operator<=>`` is overconstrained","July 2022","","","|ranges| |spaceship|"
Expand Down
2 changes: 1 addition & 1 deletion libcxx/include/__iterator/common_iterator.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class common_iterator {
}

template <class _I2 = _Iter>
_LIBCPP_HIDE_FROM_ABI decltype(auto) operator->() const
_LIBCPP_HIDE_FROM_ABI auto operator->() const
requires indirectly_readable<const _I2> && (requires(const _I2& __i) {
__i.operator->();
} || is_reference_v<iter_reference_t<_I2>> || constructible_from<iter_value_t<_I2>, iter_reference_t<_I2>>)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

// UNSUPPORTED: c++03, c++11, c++14, c++17

// decltype(auto) operator->() const
// auto operator->() const
// requires see below;

#include <iterator>
Expand All @@ -28,11 +28,11 @@ void test() {
using Common = std::common_iterator<Iterator, sentinel_wrapper<Iterator>>;

Common common(iter);
std::same_as<Iterator> auto result = common.operator->();
std::same_as<Iterator> decltype(auto) result = common.operator->();
assert(base(result) == buffer);

Common const ccommon(iter);
std::same_as<Iterator> auto cresult = ccommon.operator->();
std::same_as<Iterator> decltype(auto) cresult = ccommon.operator->();
assert(base(cresult) == buffer);
};

Expand All @@ -48,11 +48,11 @@ void test() {
using Common = std::common_iterator<Iterator, sentinel_type<int*>>;

Common common(iter);
std::same_as<int*> auto result = common.operator->();
std::same_as<int*> decltype(auto) result = common.operator->();
assert(result == buffer);

Common const ccommon(iter);
std::same_as<int*> auto cresult = ccommon.operator->();
std::same_as<int*> decltype(auto) cresult = ccommon.operator->();
assert(cresult == buffer);
};

Expand All @@ -72,14 +72,14 @@ void test() {
using Common = std::common_iterator<Iterator, sentinel_type<int*>>;

Common common(iter);
auto proxy = common.operator->();
std::same_as<int const*> auto result = proxy.operator->();
auto proxy = common.operator->();
std::same_as<int const*> decltype(auto) result = proxy.operator->();
assert(result != buffer); // we copied to a temporary proxy
assert(*result == *buffer);

Common const ccommon(iter);
auto cproxy = ccommon.operator->();
std::same_as<int const*> auto cresult = cproxy.operator->();
auto cproxy = ccommon.operator->();
std::same_as<int const*> decltype(auto) cresult = cproxy.operator->();
assert(cresult != buffer); // we copied to a temporary proxy
assert(*cresult == *buffer);
};
Expand Down