forked from qt-creator/qt-creator
Debugger: Ditch Dumper.stripClassTag
It doesn't seem to be needed anymore, and if it were, it'd be the task of the back-end specific fromNativeType() functions to sanitize type names. Change-Id: I7c6af40aeacb2dbaaf73143e9fdcc1d866bf3f3d Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -1522,7 +1522,7 @@ class Dumper:
|
||||
def itemFormat(self, item):
|
||||
format = self.formats.get(str(cleanAddress(item.value.address)))
|
||||
if format is None:
|
||||
format = self.typeformats.get(self.stripClassTag(str(item.value.type)))
|
||||
format = self.typeformats.get(str(item.value.type))
|
||||
return format
|
||||
|
||||
# Hex encoding operating on str or bytes, return str.
|
||||
|
||||
Reference in New Issue
Block a user