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
Allan Sandfeld Jensen 2015-05-04 16:54:54 +02:00
parent 12970e0312
commit 4c8bbf8dda
1 changed files with 1 additions and 1 deletions

View File

@ -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