Remove symbian debug macro definition.
authorStephen Kelly <stephen.kelly@kdab.com>
Mon, 9 Jan 2012 15:37:14 +0000 (16:37 +0100)
committerQt by Nokia <qt-info@nokia.com>
Tue, 10 Jan 2012 03:13:07 +0000 (04:13 +0100)
Change-Id: I3c4cc5cfd8e157587dbda1589501bb829a5a18db
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
src/corelib/global/qglobal.h

index a20614a..5e743b2 100644 (file)
@@ -1639,15 +1639,6 @@ inline void qUnused(T &x) { (void)x; }
    Debugging and error handling
 */
 
-/*
-   On Symbian we do not know beforehand whether we are compiling in
-   release or debug mode, so check the Symbian build define here,
-   and set the QT_NO_DEBUG define appropriately.
-*/
-#if defined(Q_OS_SYMBIAN) && defined(NDEBUG) && !defined(QT_NO_DEBUG)
-#  define QT_NO_DEBUG
-#endif
-
 #if !defined(QT_NO_DEBUG) && !defined(QT_DEBUG)
 #  define QT_DEBUG
 #endif