Fix build on QNX 650

Commit 2fa7b3b317fa941064ec4ba62163e3244becf55a broke the build, the compiler
(gcc 4.4) doesn't like the mismatch between constructor declaration and
definition.

Change-Id: Ied1f3293c21871276ce8d2db3d2e6c06c75ade90
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
This commit is contained in:
Simon Hausmann 2015-06-03 10:44:49 +02:00
parent a21dfab54e
commit dc2617f35b

View File

@ -108,6 +108,9 @@ QT_BEGIN_NAMESPACE
*/
QException::~QException()
#ifndef Q_COMPILER_NOEXCEPT
throw()
#endif
{
// must stay empty until ### Qt 6
}
@ -124,6 +127,9 @@ QException *QException::clone() const
}
QUnhandledException::~QUnhandledException()
#ifndef Q_COMPILER_NOEXCEPT
throw()
#endif
{
// must stay empty until ### Qt 6
}