Origin: upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=
111c08d0eaa13465
Last-Update: 2024-07-24
When declaring a constructor, you must use the injected name, not a
template.
qfutureinterface.h:472:37: error: template-id not allowed for constructor in C++20 [-Werror=template-id-cdtor]
Gbp-Pq: Name gcc_14.diff
class QFutureInterface<void> : public QFutureInterfaceBase
{
public:
- explicit QFutureInterface<void>(State initialState = NoState)
+ explicit QFutureInterface(State initialState = NoState)
: QFutureInterfaceBase(initialState)
{ }