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:
parent
a21dfab54e
commit
dc2617f35b
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user