mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-11-29 04:49:56 +08:00
libstdc++: Tweak common_iterator::operator-> return type [PR104443]
This adjusts the return type to match the resolution of LWG 3672. There is no functional difference, because decltype(auto) always deduced a value anyway, but this makes it simpler and consistent with the working draft. libstdc++-v3/ChangeLog: PR libstdc++/104443 * include/bits/stl_iterator.h (common_iterator::operator->): Change return type to just auto.
This commit is contained in:
parent
4894ba0786
commit
b5f5d1b36e
@ -2058,7 +2058,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
|
||||
}
|
||||
|
||||
[[nodiscard]]
|
||||
constexpr decltype(auto)
|
||||
constexpr auto
|
||||
operator->() const requires __detail::__common_iter_has_arrow<_It>
|
||||
{
|
||||
__glibcxx_assert(_M_index == 0);
|
||||
|
Loading…
Reference in New Issue
Block a user