-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[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
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@llvm/pr-subscribers-libcxx Author: Xiaoyang Liu (xiaoyang-sde) ChangesFull diff: https://github.com/llvm/llvm-project/pull/87899.diff 3 Files Affected:
diff --git a/libcxx/docs/Status/Cxx23Issues.csv b/libcxx/docs/Status/Cxx23Issues.csv
index 02297715cc2e2a..dfa9b8d3a35ad2 100644
--- a/libcxx/docs/Status/Cxx23Issues.csv
+++ b/libcxx/docs/Status/Cxx23Issues.csv
@@ -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|"
diff --git a/libcxx/include/__iterator/common_iterator.h b/libcxx/include/__iterator/common_iterator.h
index 7b3f4610d5319a..199de2cc7337b0 100644
--- a/libcxx/include/__iterator/common_iterator.h
+++ b/libcxx/include/__iterator/common_iterator.h
@@ -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>>)
diff --git a/libcxx/test/std/iterators/predef.iterators/iterators.common/arrow.pass.cpp b/libcxx/test/std/iterators/predef.iterators/iterators.common/arrow.pass.cpp
index ec992eb98b4bc8..ee7628b3e4dbb6 100644
--- a/libcxx/test/std/iterators/predef.iterators/iterators.common/arrow.pass.cpp
+++ b/libcxx/test/std/iterators/predef.iterators/iterators.common/arrow.pass.cpp
@@ -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>
@@ -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);
};
@@ -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);
};
@@ -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);
};
|
common_iterator::operator->()
should return by valuecommon_iterator::operator->()
should return by value
var-const
approved these changes
May 14, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the fix!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Abstract
This pull request implements LWG3672:
common_iterator::operator->()
should return by value. The current implementation specifies that this function should return the underlying pointer by reference (T* const&
), but it would be more intuitive to return it by value (T*
).Reference