diff options
Diffstat (limited to 'src/plugins/debugger/cdb/cdbparsehelpers.cpp')
-rw-r--r-- | src/plugins/debugger/cdb/cdbparsehelpers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/cdb/cdbparsehelpers.cpp b/src/plugins/debugger/cdb/cdbparsehelpers.cpp index 9c0fe5b986..f67b4b9a7b 100644 --- a/src/plugins/debugger/cdb/cdbparsehelpers.cpp +++ b/src/plugins/debugger/cdb/cdbparsehelpers.cpp @@ -166,7 +166,7 @@ QByteArray cdbAddBreakpointCommand(const BreakpointParameters &bpIn, case BreakpointAtMain: case BreakpointOnQmlSignalEmit: case BreakpointAtJavaScriptThrow: - QTC_ASSERT(false, return QByteArray(); ) + QTC_ASSERT(false, return QByteArray()); break; case BreakpointByAddress: str << hex << hexPrefixOn << bp.address << hexPrefixOff << dec; @@ -232,7 +232,7 @@ QVariant cdbIntegerValue(const QByteArray &t) const QVariant converted = base == 16 ? fixed.toULongLong(&ok, base) : fixed.toLongLong(&ok, base); - QTC_ASSERT(ok, return QVariant(); ) + QTC_ASSERT(ok, return QVariant()); return converted; } |