From 1352ec636fba5bb59e824c917eb023fe9a03d591 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 28 Apr 2020 09:17:06 +0200 Subject: [PATCH] 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 --- src/plugins/debugger/simplifytype.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/debugger/simplifytype.cpp b/src/plugins/debugger/simplifytype.cpp index f8bea299f61..202756a3edb 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::");