Add Qt6 TODO to remove copy-assign operator and copy-ctor
Change-Id: I5d80b272f31ada58d4eb7c19051fe447d6241633 Reviewed-by: Marc Mutz <marc.mutz@kdab.com>bb10
parent
1e15b428b5
commit
e770728a33
|
|
@ -86,7 +86,7 @@ class Q_CORE_EXPORT ExceptionHolder
|
|||
public:
|
||||
ExceptionHolder(QException *exception = Q_NULLPTR);
|
||||
ExceptionHolder(const ExceptionHolder &other);
|
||||
void operator=(const ExceptionHolder &other);
|
||||
void operator=(const ExceptionHolder &other); // ### Qt6: copy-assign operator shouldn't return void. Remove this method and the copy-ctor, they are unneeded.
|
||||
~ExceptionHolder();
|
||||
QException *exception() const;
|
||||
QExplicitlySharedDataPointer<Base> base;
|
||||
|
|
|
|||
Loading…
Reference in New Issue