diff options
-rw-r--r-- | src/corelib/global/qassert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/global/qassert.h b/src/corelib/global/qassert.h index 0852f79258f..31dca092694 100644 --- a/src/corelib/global/qassert.h +++ b/src/corelib/global/qassert.h @@ -64,7 +64,7 @@ Q_CORE_EXPORT void qBadAlloc(); #ifdef QT_NO_EXCEPTIONS # if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS) -# define Q_CHECK_PTR(p) QT_PREPEND_NAMESPACE(qt_noop)() +# define Q_CHECK_PTR(p) qt_noop() # else # define Q_CHECK_PTR(p) do {if (!(p)) QT_PREPEND_NAMESPACE(qt_check_pointer)(__FILE__,__LINE__);} while (false) # endif |