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>
This commit is contained in:
hjk
2020-04-28 09:17:06 +02:00
parent 185f03cb33
commit 1352ec636f

View File

@@ -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::");