[Development] Request review patch of QQuickImage

2023-07-26 Thread JiDe Zhang
Hi, This https://codereview.qt-project.org/c/qt/qtdeclarative/+/446349 patch has been quiet for a long time, anyone else have an opinion on it? I want to continue it. -- Development mailing list Development@qt-project.org https://lists.qt-project.org/listinfo/development

Re: [Development] C++20 comparisons @ Qt (was: Re: C++20 @ Qt)

2023-07-26 Thread Thiago Macieira
On Wednesday, 26 July 2023 02:58:51 PDT Ivan Solovev via Development wrote: > > That means it can't be used in ADL contexts without scope qualifications, > > but I don't see that as an API requirement. The API should be the > > operators. > We introduce new public macros, which means that users wil

Re: [Development] C++20 comparisons @ Qt (was: Re: C++20 @ Qt)

2023-07-26 Thread Ivan Solovev via Development
> Ah, I see. It's not an ambiguous overload problem because the hidden friend is > not even part of the overload set in the first place. That can be solved by > promoting the function from hidden friend to static member, either as public > or private, depending on the implementer's choice. > > That