mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Debug expr fixes
This commit is contained in:
parent
69d16f87f6
commit
4087bf8e2a
4 changed files with 27 additions and 6 deletions
|
@ -850,7 +850,7 @@ void COFF::CvParseMembers(DbgType* parentType, int tagIdx, bool ipi)
|
|||
// if (!parentType->mBaseTypes.IsEmpty())
|
||||
// parentType->mTypeParam = baseTypeEntry->mBaseType;
|
||||
// }
|
||||
|
||||
|
||||
parentType->mBaseTypes.PushBack(baseTypeEntry);
|
||||
parentType->mAlign = std::max(parentType->mAlign, baseTypeEntry->mBaseType->GetAlign());
|
||||
|
||||
|
@ -1529,7 +1529,7 @@ DbgType* COFF::CvParseType(int tagIdx, bool ipi)
|
|||
baseType = CvGetType(classInfo.derived);
|
||||
BP_ALLOC_T(DbgBaseTypeEntry);
|
||||
DbgBaseTypeEntry* baseTypeEntry = mAlloc.Alloc<DbgBaseTypeEntry>();
|
||||
baseTypeEntry->mBaseType = baseType;
|
||||
baseTypeEntry->mBaseType = baseType;
|
||||
dbgType->mBaseTypes.PushBack(baseTypeEntry);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue