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
Marco Bubke
flatpak-qt-creator
Commits
571d40a6
Commit
571d40a6
authored
Sep 08, 2010
by
hjk
Browse files
debugger: smother some warning that's to be expected.
parent
d653099b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
571d40a6
...
...
@@ -951,7 +951,8 @@ void GdbEngine::handleResultRecord(GdbResponse *response)
// Happens with some incarnations of gdb 6.8 for "run to line"
||
(
response
->
resultClass
==
GdbResultDone
&&
cmd
.
command
==
"continue"
)
// Happens with some incarnations of gdb 6.8 for "jump to line"
||
(
response
->
resultClass
==
GdbResultDone
&&
cmd
.
command
.
startsWith
(
"jump"
));
||
(
response
->
resultClass
==
GdbResultDone
&&
cmd
.
command
.
startsWith
(
"jump"
))
||
(
response
->
resultClass
==
GdbResultDone
&&
cmd
.
command
.
startsWith
(
"detach"
));
if
(
!
isExpectedResult
)
{
#ifdef Q_OS_WIN
...
...
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