1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed type lookup for comptime emitted type refs in specialized generics

This commit is contained in:
Brian Fiete 2023-03-14 07:01:44 -07:00
parent d34976864c
commit 723010fd9d
4 changed files with 103 additions and 28 deletions

View file

@ -1001,6 +1001,7 @@ public:
int mBestPri;
BfTypeDef* mBestTypeDef;
BfTypeDef* mAmbiguousTypeDef;
Array<BfProject*>* mCheckProjects;
public:
BfTypeDefLookupContext()
@ -1008,6 +1009,7 @@ public:
mBestPri = (int)0x80000000;
mBestTypeDef = NULL;
mAmbiguousTypeDef = NULL;
mCheckProjects = NULL;
}
bool HasValidMatch()