Debugger: Remove broken old LLDB QSet dumper workaround

Task-number: QTCREATORBUG-13153
Change-Id: Ifc1393a9bedd0be793d752ad6af85221f5f8d247
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-04-23 09:42:44 +02:00
parent 69de1da74c
commit 7697bd4b6f

View File

@@ -1651,10 +1651,6 @@ def qdump__QSet(d, value):
it = node.dereference().cast(innerType)
with SubItem(d, i):
key = it["key"]
if not key:
# LLDB can't access directly since it's in anonymous union
# for Qt4 optimized int keytype
key = it[1]["key"]
d.putItem(key)