From: Arsen Arsenović Date: Sat, 23 Mar 2024 15:15:25 +0000 (+0100) Subject: libstdc++: fix generator iterator operator* return type X-Git-Tag: basepoints/gcc-15~459 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb1d50e1f6e07c146999b1b773043c140fdc72b5;p=thirdparty%2Fgcc.git libstdc++: fix generator iterator operator* return type Per the standard, the return type of a generators ranges iterator op* should be the reference type rather than the yielded type. The yielded type was used here by mistake. libstdc++-v3/ChangeLog: * include/std/generator (generator::_Iterator::operator*): Fix return type. * testsuite/24_iterators/range_generators/iter_deref_return.cc: New test. --- diff --git a/libstdc++-v3/include/std/generator b/libstdc++-v3/include/std/generator index 2d1dcced1e57..789016b5a883 100644 --- a/libstdc++-v3/include/std/generator +++ b/libstdc++-v3/include/std/generator @@ -773,12 +773,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION operator++(int) { this->operator++(); } - yielded + _Reference operator*() const noexcept(is_nothrow_move_constructible_v<_Reference>) { auto& __p = this->_M_coro.promise(); - return static_cast(*__p._M_value()); + return static_cast<_Reference>(*__p._M_value()); } private: diff --git a/libstdc++-v3/testsuite/24_iterators/range_generators/iter_deref_return.cc b/libstdc++-v3/testsuite/24_iterators/range_generators/iter_deref_return.cc new file mode 100644 index 000000000000..75471952e76c --- /dev/null +++ b/libstdc++-v3/testsuite/24_iterators/range_generators/iter_deref_return.cc @@ -0,0 +1,25 @@ +// { dg-do compile { target c++23 } } +// Copyright (C) 2024 Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 3, or (at your option) +// any later version. + +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +#include + +// Check that the return type of iterator::operator* is the reference type. +// Pre-op* return type fix, this'd have resulted in a op* return type of const +// bool&. + +std::generator +foo(); + +static_assert(std::is_same_v); +static_assert(std::is_same_v);