forked from qt-creator/qt-creator
debugger: disable some debug output again; also make more type known as 'simple
integral'
This commit is contained in:
@@ -85,7 +85,7 @@ namespace Internal {
|
||||
using namespace Debugger::Constants;
|
||||
|
||||
//#define DEBUG_PENDING 1
|
||||
#define DEBUG_SUBITEM 1
|
||||
//#define DEBUG_SUBITEM 1
|
||||
|
||||
#if DEBUG_PENDING
|
||||
# define PENDING_DEBUG(s) qDebug() << s
|
||||
|
||||
@@ -333,10 +333,9 @@ bool isIntType(const QString &type)
|
||||
<< QLatin1String("char") << QLatin1String("int") << QLatin1String("short")
|
||||
<< QLatin1String("long") << QLatin1String("bool")
|
||||
<< QLatin1String("signed char") << QLatin1String("unsigned")
|
||||
<< QLatin1String("unsigned char")
|
||||
<< QLatin1String("unsigned int") << QLatin1String("unsigned long")
|
||||
<< QLatin1String("unsigned char") << QLatin1String("unsigned long")
|
||||
<< QLatin1String("long long") << QLatin1String("unsigned long long");
|
||||
return types.contains(type);
|
||||
return type.endsWith(QLatin1String(" int")) || types.contains(type);
|
||||
}
|
||||
|
||||
bool isSymbianIntType(const QString &type)
|
||||
|
||||
Reference in New Issue
Block a user