debugger: disable some debug output again; also make more type known as 'simple

integral'
This commit is contained in:
hjk
2009-09-16 12:20:16 +02:00
parent b96b2a2b3a
commit 33271f0be7
2 changed files with 3 additions and 4 deletions

View File

@@ -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

View File

@@ -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)