Revert change of NOTHROW to NOEXCEPT
The change would remove the noexception hint on MSVC versions that doesn't support noexcept but supports their older 'throw()' hint. Change-Id: Ie5163f2413522f427279f59c8562c0ce4769bc82 Reviewed-by: Marc Mutz <marc.mutz@kdab.com>bb10
parent
12970e0312
commit
4c8bbf8dda
|
|
@ -61,7 +61,7 @@ public:
|
|||
~QPalette();
|
||||
QPalette &operator=(const QPalette &palette);
|
||||
#ifdef Q_COMPILER_RVALUE_REFS
|
||||
QPalette(QPalette &&other) Q_DECL_NOEXCEPT
|
||||
QPalette(QPalette &&other) Q_DECL_NOTHROW
|
||||
: d(other.d), data(other.data)
|
||||
{ other.d = Q_NULLPTR; }
|
||||
inline QPalette &operator=(QPalette &&other) Q_DECL_NOEXCEPT
|
||||
|
|
|
|||
Loading…
Reference in New Issue