1
0
Fork 0
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:
Brian Fiete 2022-02-22 08:42:41 -08:00
parent c2490278fa
commit e5f280de32
4 changed files with 20 additions and 6 deletions

View file

@ -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;
}