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:
parent
d34976864c
commit
723010fd9d
4 changed files with 103 additions and 28 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue