forked from qt-creator/qt-creator
Debugger: Overwrite unsupported call functions in cdbbridge
Change-Id: I64f933d649432fb680fc7e2e0cdfa251e798a58c Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -196,3 +196,9 @@ class Dumper(DumperBase):
|
|||||||
|
|
||||||
def nativeDynamicTypeName(self, address, baseType):
|
def nativeDynamicTypeName(self, address, baseType):
|
||||||
return None # FIXME: Seems sufficient, no idea why.
|
return None # FIXME: Seems sufficient, no idea why.
|
||||||
|
|
||||||
|
def callHelper(self, rettype, value, function, args):
|
||||||
|
raise Exception("cdb does not support calling functions")
|
||||||
|
|
||||||
|
def putCallItem(self, name, rettype, value, func, *args):
|
||||||
|
return
|
||||||
|
Reference in New Issue
Block a user