forked from qt-creator/qt-creator
debugger: handle type code "Method"
Seems to be new use in mingw 4.6. Change-Id: I7331e3be3c14fed86d4eebf333ab4b01d1b237bf Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
@@ -1633,7 +1633,9 @@ class Dumper:
|
||||
self.putPointerValue(value.address)
|
||||
return
|
||||
|
||||
if type.code == MethodPointerCode or type.code == MemberPointerCode:
|
||||
if type.code == MethodPointerCode \
|
||||
or type.code == MethodCode \
|
||||
or type.code == MemberPointerCode:
|
||||
self.putType(typeName)
|
||||
self.putAddress(value.address)
|
||||
self.putValue(value)
|
||||
|
Reference in New Issue
Block a user