summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/gdb/coregdbadapter.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2011-07-29 12:00:11 +0200
committerKai Koehne <kai.koehne@nokia.com>2011-07-29 12:19:11 +0200
commit1757228278004b56fcf3ff5f3fccd80216b7df2d (patch)
treee546475fe7a9f32ce23b6b157b666b6220c25faf /src/plugins/debugger/gdb/coregdbadapter.cpp
parentc031d4564e2a9cba04cc9d15b7e197251a2d79f7 (diff)
downloadqt-creator-1757228278004b56fcf3ff5f3fccd80216b7df2d.tar.gz
New QTC_CHECK warning replacing QTC_ASSERT(x, /**/)
Warn if the condition fails, but otherwise don't change the execution flow. Change-Id: Id7b14c745109b66960add967b2a4ef8d31e1a546 Reviewed-on: http://codereview.qt.nokia.com/2389 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/debugger/gdb/coregdbadapter.cpp')
-rw-r--r--src/plugins/debugger/gdb/coregdbadapter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdb/coregdbadapter.cpp b/src/plugins/debugger/gdb/coregdbadapter.cpp
index 6b80ce102c..333fe7c68c 100644
--- a/src/plugins/debugger/gdb/coregdbadapter.cpp
+++ b/src/plugins/debugger/gdb/coregdbadapter.cpp
@@ -239,7 +239,7 @@ void CoreGdbAdapter::runEngine()
void CoreGdbAdapter::interruptInferior()
{
// A core never runs, so this cannot be called.
- QTC_ASSERT(false, /**/);
+ QTC_CHECK(false);
}
void CoreGdbAdapter::shutdownInferior()