mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 03:52:19 +02:00
Improved minidump debugging
This commit is contained in:
parent
60b162ba90
commit
9332693132
4 changed files with 11 additions and 3 deletions
|
@ -21657,7 +21657,7 @@ bool BfModule::SlotVirtualMethod(BfMethodInstance* methodInstance, BfAmbiguityCo
|
|||
lookupType->mTypeDef->PopulateMemberSets();
|
||||
BfMethodDef* nextMethodDef = NULL;
|
||||
BfMemberSetEntry* entry;
|
||||
if (lookupType->mTypeDef->mMethodSet.TryGetWith(methodInstance->mMethodDef->mName, &entry))
|
||||
if (lookupType->mTypeDef->mMethodSet.TryGetWith((StringImpl&)methodInstance->mMethodDef->mName, &entry))
|
||||
nextMethodDef = (BfMethodDef*)entry->mMemberDef;
|
||||
|
||||
while (nextMethodDef != NULL)
|
||||
|
@ -22027,7 +22027,7 @@ bool BfModule::SlotVirtualMethod(BfMethodInstance* methodInstance, BfAmbiguityCo
|
|||
ifaceInst->mTypeDef->PopulateMemberSets();
|
||||
BfMethodDef* checkMethodDef = NULL;
|
||||
BfMemberSetEntry* entry;
|
||||
if (ifaceInst->mTypeDef->mMethodSet.TryGetWith(methodInstance->mMethodDef->mName, &entry))
|
||||
if (ifaceInst->mTypeDef->mMethodSet.TryGetWith((StringImpl&)methodInstance->mMethodDef->mName, &entry))
|
||||
checkMethodDef = (BfMethodDef*)entry->mMemberDef;
|
||||
|
||||
while (checkMethodDef != NULL)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue