mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Better fix for VerifyTypeLookups
This commit is contained in:
parent
a412452bac
commit
c598944f52
4 changed files with 87 additions and 45 deletions
|
@ -1668,11 +1668,25 @@ struct BfTypeLookupResult
|
|||
{
|
||||
BfTypeDef* mTypeDef;
|
||||
bool mForceLookup;
|
||||
bool mFoundInnerType;
|
||||
|
||||
BfTypeLookupResult()
|
||||
{
|
||||
mTypeDef = NULL;
|
||||
mForceLookup = false;
|
||||
mFoundInnerType = false;
|
||||
}
|
||||
};
|
||||
|
||||
struct BfTypeLookupResultCtx
|
||||
{
|
||||
BfTypeLookupResult* mResult;
|
||||
bool mIsVerify;
|
||||
|
||||
BfTypeLookupResultCtx()
|
||||
{
|
||||
mResult = NULL;
|
||||
mIsVerify = false;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue