forked from qt-creator/qt-creator
debugger: fix display of '"' chars
Task-number: QTCREATORBUG-3084
This commit is contained in:
@@ -1472,6 +1472,12 @@ class Dumper:
|
||||
value = item.value
|
||||
type = value.type
|
||||
|
||||
if type.code == gdb.TYPE_CODE_INT or type.code == gdb.TYPE_CODE_CHAR:
|
||||
self.putType(realtype)
|
||||
self.putValue(int(value))
|
||||
self.putNumChild(0)
|
||||
return
|
||||
|
||||
typedefStrippedType = stripTypedefs(type)
|
||||
|
||||
if isSimpleType(typedefStrippedType):
|
||||
|
||||
Reference in New Issue
Block a user