forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.14'
Change-Id: Ib9512b4fc5e17b04ca4be79fc315e79a52d06497
This commit is contained in:
@@ -787,6 +787,8 @@ class Dumper(DumperBase):
|
||||
def removeTypePrefix(self, name):
|
||||
return re.sub('^(struct|class|union|enum|typedef) ', '', name)
|
||||
|
||||
__funcSignature_Regex__ = re.compile(r'^.+\(.*\)')
|
||||
|
||||
def lookupNativeType(self, name):
|
||||
#DumperBase.warn('LOOKUP TYPE NAME: %s' % name)
|
||||
typeobj = self.typeCache.get(name)
|
||||
@@ -807,6 +809,9 @@ class Dumper(DumperBase):
|
||||
# Note that specifying a prefix like enum or typedef or class will make the call fail to
|
||||
# find the type, thus the prefix is stripped.
|
||||
nonPrefixedName = self.canonicalTypeName(self.removeTypePrefix(name))
|
||||
if __funcSignature_Regex__.match(nonPrefixedName) is not None:
|
||||
return lldb.SBType()
|
||||
|
||||
typeobjlist = self.target.FindTypes(nonPrefixedName)
|
||||
if typeobjlist.IsValid():
|
||||
for typeobj in typeobjlist:
|
||||
|
||||
Reference in New Issue
Block a user