Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
33271f0b
Commit
33271f0b
authored
Sep 16, 2009
by
hjk
Browse files
debugger: disable some debug output again; also make more type known as 'simple
integral'
parent
b96b2a2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
33271f0b
...
...
@@ -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
...
...
src/plugins/debugger/watchutils.cpp
View file @
33271f0b
...
...
@@ -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
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment