summaryrefslogtreecommitdiff
path: root/src/plugins/debugger
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-04-28 09:17:06 +0200
committerhjk <hjk@qt.io>2020-04-28 09:14:07 +0000
commit1352ec636fba5bb59e824c917eb023fe9a03d591 (patch)
tree30a723244ae900544982bcac11e1e68206e2870c /src/plugins/debugger
parent185f03cb339dc7b88f5808e95b4297f4bd4882f2 (diff)
downloadqt-creator-1352ec636fba5bb59e824c917eb023fe9a03d591.tar.gz
Debugger: Simplify 'long long int' to 'long long' in display
This also fixes the StdMap test case with LLDB 9.0.0 Change-Id: I0e4580b7e64d62664a81fd75a5e142717bf3563a Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/debugger')
-rw-r--r--src/plugins/debugger/simplifytype.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/simplifytype.cpp b/src/plugins/debugger/simplifytype.cpp
index f8bea299f6..202756a3ed 100644
--- a/src/plugins/debugger/simplifytype.cpp
+++ b/src/plugins/debugger/simplifytype.cpp
@@ -118,6 +118,7 @@ QString simplifyType(const QString &typeIn)
type.remove(0, 7);
type.replace("short int", "short");
+ type.replace("long long int", "long long");
const bool isLibCpp = type.contains("std::__1");
type.replace("std::__cxx11::", "std::");