Re: [PATCH] libstdc++: Rename concat_view::iterator to ::_Iterator

2025-02-19 Thread Jonathan Wakely
On Wed, 19 Feb 2025 at 15:03, Patrick Palka wrote: > > Tested on x86_64-pc-linux-gnu, does this look OK for trunk? OK, thanks. > > -- >8 -- > > Even though iterator is a reserved macro name, we can't use it as the > name of this implementation detail type since it could introduce name > lookup a

[PATCH] libstdc++: Rename concat_view::iterator to ::_Iterator

2025-02-19 Thread Patrick Palka
Tested on x86_64-pc-linux-gnu, does this look OK for trunk? -- >8 -- Even though iterator is a reserved macro name, we can't use it as the name of this implementation detail type since it could introduce name lookup ambiguity in valid code, e.g. struct A { using iterator = void; } struct B :