Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
3c7b1f4a
Commit
3c7b1f4a
authored
Apr 16, 2009
by
hjk
Browse files
debugger: return the address of the output buffer from the dumpers
parent
6f56ad0a
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/gdbmacros/gdbmacros.cpp
View file @
3c7b1f4a
...
...
@@ -204,10 +204,10 @@ QT_END_NAMESPACE
// This can be mangled typenames of nested templates, each char-by-char
// comma-separated integer list...
char
qDumpInBuffer
[
10000
];
Q_DECL_EXPORT
char
qDumpInBuffer
[
10000
];
// The output buffer.
char
qDumpOutBuffer
[
100000
];
Q_DECL_EXPORT
char
qDumpOutBuffer
[
100000
];
namespace
{
...
...
@@ -2525,7 +2525,7 @@ static void handleProtocolVersion2and3(QDumper & d)
extern
"C"
Q_DECL_EXPORT
void
qDumpObjectData440
(
void
*
qDumpObjectData440
(
int
protocolVersion
,
int
token
,
void
*
data
,
...
...
@@ -2630,4 +2630,5 @@ void qDumpObjectData440(
else
{
qDebug
()
<<
"Unsupported protocol version"
<<
protocolVersion
;
}
return
qDumpOutBuffer
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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