mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fix for unbound generic type lookups
This commit is contained in:
parent
c2490278fa
commit
e5f280de32
4 changed files with 20 additions and 6 deletions
|
@ -2607,7 +2607,8 @@ public:
|
|||
BfResolveTypeRefFlags mResolveFlags;
|
||||
BfCallingConvention mCallingConvention;
|
||||
bool mHadVar;
|
||||
bool mFailed;
|
||||
bool mFailed;
|
||||
bool mIsUnboundGeneric;
|
||||
|
||||
public:
|
||||
LookupContext()
|
||||
|
@ -2619,6 +2620,7 @@ public:
|
|||
mRootResolvedType = NULL;
|
||||
mFailed = false;
|
||||
mHadVar = false;
|
||||
mIsUnboundGeneric = false;
|
||||
mResolveFlags = BfResolveTypeRefFlag_None;
|
||||
mCallingConvention = BfCallingConvention_Unspecified;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue